Skip to content

Development on Arch Linux

mp4 edited this page Jan 6, 2018 · 8 revisions

Setup Environment for UMOG on Arch Linux

Clone the Repository

All code is for a bash terminal; make sure to replace you with your username. The current algorithms for dealing with voxels and doing reaction diffusion require OpenGL 4.1.

sudo pacman -S cython python-numpy alembic
cd /usr/share/blender/2.79/scripts/addons_contrib/
sudo chown -R you .
#go wherever you want to build the plugin
git clone https://github.com/hsab/UMOG.git
#run this it will fail but generate the config file used in the next command
python setup.py --noversioncheck
#edit config.py set the addonsDirectory to "/usr/share/blender/2.79/scripts/addons_contrib"
cd UMOG/umog_addon/packages/
chmod +x install.sh
./install.sh
cd ../..
python setup.py --noversioncheck

After this the plugin should be able to be enabled from Blender without any errors.