Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PierrickKoch/0951b9274f0e4bcf5f191ee8a2588614 to your computer and use it in GitHub Desktop.
Save PierrickKoch/0951b9274f0e4bcf5f191ee8a2588614 to your computer and use it in GitHub Desktop.
#! /bin/bash
VERSION=16.4.3
WS=$(pwd)/ws
mkdir $WS; cd $WS
wget -c https://github.com/pypa/virtualenv/archive/${VERSION}.tar.gz
tar xvfz ${VERSION}.tar.gz
cd virtualenv-${VERSION}
python3 virtualenv.py pyvenv3
source pyvenv3/bin/activate
pip install jupyter matplotlib Pillow scikit-learn pandas-bokeh numba
cd ..
git clone https://github.com/Fusion-Goettingen/ExtendedTargetTrackingToolbox.git
cd ExtendedTargetTrackingToolbox/example/
ln -s ../data
cd ..
jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment