forked from MStarmans91/WORCTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstallation.sh
More file actions
executable file
·32 lines (26 loc) · 1.08 KB
/
installation.sh
File metadata and controls
executable file
·32 lines (26 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
# -----------------------------------------------------------------------
# WORC Installation
# -----------------------------------------------------------------------
# Install requirements: git, cmake, build-essential
echo -e "Installing git, pip, build-essential, graphviz, ipython and jupyter notebook requirements."
apt-get -y install git python-pip build-essential graphviz ipython jupyter-core
# Install jupyter when using the notebook
pip install jupyter
# Install WORC
pip install WORC
# Alternative: Clone WORC repository from Github and install
# mkdir ~/Documents/Packages
# git clone http://Github.com/MStarmans91/WORC ~/Documents/Packages/WORC
# cd ~/Documents/Packages/WORC
# git checkout development
# pip install -r requirements.txt
# python setup.py install
# Alternative: Install the PREDICT requirements and package manually
# echo -e "Installing PREDICT requirements and package itself."
# cd ~/Documents/Packages
# git clone http://Github.com/Svdvoort/PREDICTFastr PREDICT
# cd PREDICT
# git checkout develop
# pip install -r requirements.txt
# python setup.py install