Changeset View
Changeset View
Standalone View
Standalone View
doc/python_api/rst/info_tips_and_tricks.rst
| Show First 20 Lines • Show All 203 Lines • ▼ Show 20 Lines | |||||
| - Write out 3D models to use external mesh manipulation tools and read back in the results. | - Write out 3D models to use external mesh manipulation tools and read back in the results. | ||||
| - Convert files into recognizable formats before reading. | - Convert files into recognizable formats before reading. | ||||
| Bundled Python & Extensions | Bundled Python & Extensions | ||||
| =========================== | =========================== | ||||
| The Blender releases distributed from blender.org include a complete Python installation on all platforms, | The Blender releases distributed from blender.org include a complete Python installation on all platforms, | ||||
| this has the disadvantage that any extensions you have installed in your systems Python wont be found by Blender. | this has the disadvantage that any extensions you have installed in your systems Python won't be found by Blender. | ||||
| There are 2 ways around this: | There are 2 ways around this: | ||||
| - Remove Blender Python sub-directory, Blender will then fallback on the systems Python and use that instead. | - Remove Blender Python sub-directory, Blender will then fallback on the systems Python and use that instead. | ||||
| Depending on your platform, | Depending on your platform, | ||||
| you may need to explicitly reference the location of your Python installation using the | you may need to explicitly reference the location of your Python installation using the | ||||
| ``PYTHONPATH`` environment variable, eg: | ``PYTHONPATH`` environment variable, eg: | ||||
| ▲ Show 20 Lines • Show All 103 Lines • Show Last 20 Lines | |||||