Skip to content

Installation

Etienne Combrisson edited this page Aug 14, 2018 · 4 revisions

Note that Visbrain is a Python 3 package that works best with python scripts (*.py). On some systems, it might works inside iPython (and rarely in Jupyter but you might be lucky !)

Dependencies

Main dependencies

Here's the list of the main dependencies :

Additional recommended packages

We also strongly recommend to install to install PyOpenGL :

pip install PyOpenGL

Optional dependencies

Depending of usages, some additional packages might be needed :

Installation options

We provide several installation options depending on your needs :

Regular installation

Install the latest stable version from PyPi :

pip install visbrain

Latest master version

  • Install the latest vispy :

pip install git+https://github.com/vispy/vispy.git

  • Then, install the latest development version without cloning the repository :

pip install git+https://github.com/EtienneCmb/visbrain.git

Developer mode

git clone https://github.com/EtienneCmb/visbrain.git visbrain/
cd visbrain/
python setup.py develop
git checkout develop

Configure a full conda environnement

conda create -q -n py36 python=3.6 numpy scipy pip
source activate py36
pip install matplotlib pyqt5 vispy pillow
pip install visbrain PyOpenGL PyOpenGL_accelerate