author | stetrabby <info@trabucchi.de> |
Fri, 17 Jan 2014 16:54:20 +0100 | |
changeset 91 | b335b116860f |
parent 82 | 8a880e726be1 |
child 192 | 60b10eef975d |
permissions | -rw-r--r-- |
rb@82 | 1 |
Installation |
rb@82 | 2 |
------------ |
rb@82 | 3 |
|
rb@82 | 4 |
First you have to clone this repository and all its submodules:: |
rb@82 | 5 |
hg clone ssh://hg@bitbucket.org/pkoppatz/pymove3d-app |
rb@82 | 6 |
cd pymove3d-app |
rb@82 | 7 |
|
rb@82 | 8 |
Next create a virtualenv and install all the requirments into it. In this |
rb@82 | 9 |
example we are using virtualenvwrapper to manage the virtualenv:: |
rb@82 | 10 |
|
rb@82 | 11 |
mkvirtualenv pymove3d-env |
rb@82 | 12 |
|
rb@82 | 13 |
This repository provides requirements and configurations. |
rb@82 | 14 |
|
rb@82 | 15 |
For local development, install the requirements specified in |
rb@82 | 16 |
requirements:: |
rb@82 | 17 |
|
rb@82 | 18 |
pip install -r requirements.txt |
rb@82 | 19 |
|
rb@82 | 20 |
Now that this is complete, you can run pymove3d in that environment:: |
rb@82 | 21 |
|
rb@82 | 22 |
python ./pymove3d.py |
rb@82 | 23 |
|
rb@82 | 24 |
|
rb@82 | 25 |
|
rb@82 | 26 |