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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-01-25 12:10:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-25 12:15:38 +0300
commit12b183ba554a5c7d5716b353dafcde0bb8ba4946 (patch)
tree82075eae33156525a3b2c2aedbbb231c8efaf84a /doc
parentcb83cf1b71664c569f72168b759a30152a60607c (diff)
Docs: update reference to PYTHONPATH
Diffstat (limited to 'doc')
-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,