Skip to content

Instantly share code, notes, and snippets.

@dpogue
Created October 29, 2020 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpogue/ac098dc83ce8f3a9eea977f15eb9eb4e to your computer and use it in GitHub Desktop.
Save dpogue/ac098dc83ce8f3a9eea977f15eb9eb4e to your computer and use it in GitHub Desktop.

Pre-requisites

  • Blender 2.79
  • Python 3.7 (because that's what Blender uses)

Building libHSPlasma

See https://github.com/H-uru/libhsplasma/

You will need to ensure it finds Python 3.7 and builds the PyHSPlasma module.

Run sudo make install, and for good measure, cp ./Python/PyHSPlasma.so ~/.config/blender/2.79/scripts/addons/

Building korman

Grab https://github.com/H-uru/korman

Symlink the korman Python code into Blender addons:
ln -nfs ./korman ~/.config/blender/2.79/scripts/addons/korman

Build the korlib C module:

cd korlib
mkdir build
cd build
cmake ..
make
cp _korlib.so ~/.config/blender/2.79/scripts/addons
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment