Skip to content

Commit

Permalink
Qt4.8 direct link, use of pyvenv instead of virtualenv (as pip3 does …
Browse files Browse the repository at this point in the history
…not symlink virtualenv when python has been installed from .pkg)
  • Loading branch information
PyrApple committed Mar 4, 2015
1 parent bfef247 commit 5eeb77a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions manual/installation/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Document Sections
* `Running`_


Folders Structure
Folder Structure
-----------------

After all the downloads and installations you should end up with the following folder structure. This is a recommendation, and it will be used as reference along this manual.e
Expand Down Expand Up @@ -57,7 +57,7 @@ Required for Interface Development
*At this moment those packages are always required, but the plans are to make them optional.*

* `PIP <https://pip.pypa.io/en/latest/installing.html>`_
* `QT 4.8 <https://qt-project.org/downloads#qt-lib/>`_
* `QT 4.8 <http://download.qt.io/archive/qt/4.8/4.8.6/>`_


Quick Setup
Expand All @@ -68,12 +68,13 @@ Type the following commands in your terminal. If you are in Windows we recommend
.. code-block:: bash
$ cd $INSTALL_DIR
$ pip install virtualenv
$ virtualenv venv
$ pip3 install virtualenv
$ pyvenv venv
$ source venv/bin/activate
$ pip requirements -r blender-vr/requirements.txt
$ pip3 install -r blender-vr/requirements.txt
$ pyside_postinstall.py -install
*On MacOS: running these lines may popup a notification window asking to "download the command line developer tools", go for it*

Acquiring Blender
-----------------
Expand Down

0 comments on commit 5eeb77a

Please sign in to comment.