-
Notifications
You must be signed in to change notification settings - Fork 7
Blender Python setup
Louis edited this page Feb 1, 2015
·
4 revisions
- Scripting: select the dropdown at the top, select or search for Scripting, a console appears
- Importing a script, like Scott Hartley's blmol,
import blmol
, won't work without custom Python module installation:- e.g.
numpy
needs its own installation in the Blender directory: sudo apt-get install python3.4
sudo apt-get install python3-pip
sudo pip3 install numpy
sudo chmod +www /usr/share/blender/scripts/modules/
-
sudo cp -r /usr/local/lib/python3.4/dist-packages/num* /usr/share/blender/scripts/modules/
- apparently also works in
.../addons/modules
- apparently also works in
- e.g.