Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-01-25 12:10:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-27 05:33:25 +0300
commitf56bc68231f2ed137ddd260d83b6e25621df9454 (patch)
tree9458c92e866b2edbdefa9fe5dedcd8e81798fd0e
parentfc1f5bded46afbb9b16fffe9e4c7f7c212566255 (diff)
Docs: update reference to PYTHONPATH
-rw-r--r--doc/python_api/rst/info_tips_and_tricks.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/python_api/rst/info_tips_and_tricks.rst b/doc/python_api/rst/info_tips_and_tricks.rst
index 5c19e652480..7a2e8206c72 100644
--- a/doc/python_api/rst/info_tips_and_tricks.rst
+++ b/doc/python_api/rst/info_tips_and_tricks.rst
@@ -221,11 +221,12 @@ There are 2 ways around this:
.. code-block:: sh
- PYTHONPATH=/usr/lib/python3.5 ./blender
+ PYTHONPATH=/usr/lib/python3.7 ./blender --python-use-system-env
.. warning::
- The Python version must match the one that Blender comes with.
+ The Python (major, minor) version must match the one that Blender comes with.
+ Therefor can't use Python 3.6 with Blender built to use Python 3.7.
- Copy or link the extensions into Blender's Python sub-directory so Blender can access them,
you could also copy the entire Python installation into Blenders sub-directory,