@@ -10,7 +10,8 @@ and :mod:`compas_blender` provides functionality for converting COMPAS objects t
1010
1111.. note ::
1212
13- These instructions are for the latest version of Blender (4.0) and for the current LTS versions (3.3 and 3.6).
13+ These instructions are for the current LTS versions of Blender (3.3, 3.6 and 4.2).
14+ Other versions are currently not supported.
1415
1516.. warning ::
1617
@@ -34,9 +35,9 @@ This procedure simply uses that Python installation and associated ``pip`` to in
3435The location of the executable is different on different platforms.
3536The default locations are:
3637
37- * Windows: ``C:\Program Files\Blender Foundation\Blender 4.0 \4.0 \python\bin\python.exe ``
38- * macOS: ``/Applications/Blender.app/Contents/Resources/4.0 /python/bin/python3.10 ``
39- * Linux: ``/usr/share/blender/4.0 /python/bin/python3.10 `` (i think :)
38+ * Windows: ``C:\Program Files\Blender Foundation\Blender 4.2 \4.2 \python\bin\python.exe ``
39+ * macOS: ``/Applications/Blender.app/Contents/Resources/4.2 /python/bin/python3.10 ``
40+ * Linux: ``/usr/share/blender/4.2 /python/bin/python3.10 `` (i think :)
4041
4142.. note ::
4243
@@ -53,7 +54,7 @@ Before installing `compas` with `pip`, it is highly recommended that you update
5354
5455.. code-block :: bash
5556
56- $ /Applications/Blender.app/Contents/Resources/4.0 /python/bin/python3.10 -m pip install --upgrade pip
57+ $ /Applications/Blender.app/Contents/Resources/4.2 /python/bin/python3.10 -m pip install --upgrade pip
5758
5859
5960 Install from PyPI
@@ -63,7 +64,7 @@ For example on Mac:
6364
6465.. code-block :: bash
6566
66- $ /Applications/Blender.app/Contents/Resources/4.0 /python/bin/python3.10 -m pip install compas
67+ $ /Applications/Blender.app/Contents/Resources/4.2 /python/bin/python3.10 -m pip install compas
6768
6869
6970 Install from Source
@@ -72,7 +73,7 @@ Install from Source
7273.. code-block :: bash
7374
7475 $ cd path/to/compas
75- $ /Applications/Blender.app/Contents/Resources/4.0 /python/bin/python3.10 -m pip install -e .
76+ $ /Applications/Blender.app/Contents/Resources/4.2 /python/bin/python3.10 -m pip install -e .
7677
7778
7879 Using ``compas_blender.install ``
@@ -95,7 +96,7 @@ Optionally, you can specify the version of Blender using the ``-v`` flag.
9596
9697.. code-block :: bash
9798
98- $ python -m compas_blender.install -v 4.0
99+ $ python -m compas_blender.install -v 4.2
99100
100101 To remove all previously installed symlinks before installing new ones, use the ``--clean `` flag.
101102
@@ -111,7 +112,7 @@ To test if the installation was successful, you can run the following on the Ble
111112
112113>>> import compas
113114>>> print (compas.__version__ )
114- '2.0 .0'
115+ '2.4 .0'
115116
116117
117118Visualisation
0 commit comments