Created
June 7, 2019 11:57
-
-
Save PierrickKoch/0951b9274f0e4bcf5f191ee8a2588614 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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