| 1234567891011121314151617181920212223242526272829303132333435 |
- ---------------------------
- Python package dependencies
- ---------------------------
- - VTK
- - pyOSC
- - pygame
- ------------------------------
- Install dependencies on Ubuntu
- ------------------------------
- Install VTK and pygame, and setuptools to be able to use easy_install:
- $ sudo apt-get install python-vtk python-pygame python-setuptools
- $ sudo easy_install pyOSC
- -------------------------------
- Install dependencies on Windows
- -------------------------------
- Go here: http://www.lfd.uci.edu/~gohlke/pythonlibs/, and install packages:
- - pygame-1.9.2pre.win32-py2.7.exe
- - VTK-5.8.0.win32-py2.7.exe
- Download the zip file from here: https://trac.v2.nl/wiki/pyOSC, and run:
- python setup.py install
- -------------------------------
- Using the Makefile (Linux only)
- -------------------------------
- Running 'make' in the root directory creates the directory 'build/', in which
- the output of latex documents is created. To be able to compile the report,
- commands 'pdflatex' and 'bibtex8' are required. To install these commands on
- Ubuntu, type:
- $ sudo apt-get install texlive-latex-base texlive-extra-utils
|