-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathinstall_extra.sh
30 lines (28 loc) · 971 Bytes
/
install_extra.sh
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
pip2 install numpy scipy pandas
pip2 install scikit-learn
pip2 install tensorflow==1.14.0
pip2 install torch torchvision
pip2 install pandas
pip2 install ujson
pip2 install ipdb
pip2 install future
sudo add-apt-repository ppa:deadsnakes/ppa -y
sudo apt install python3.8 -y
sudo apt install python3.8-venv python3-venv python3-pip -y
sudo apt install python3.8-distutils -y
sudo apt-get install python3.8-dev -y
# python3.8 packages
# creates and enter the benchmark virtual environment 'bench-env'
python3.8 -m venv bench-env
. bench-env/bin/activate
# ~~~~~~~~~~~~~~~START bench-env~~~~~~~~~~~~~~~~~~~~~~~~
python3.8 -m pip install scikit-learn
python3.8 -m pip install tensorflow
python3.8 -m pip install numpy
python3.8 -m pip install pypots
python3.8 -m pip install torch_geometric
python3.8 -m pip install torch_scatter
python3.8 -m pip install torch-sparse
python3.8 -m pip install torch_cluster
deactivate
# ~~~~~~~~~~~~~~~END bench-env~~~~~~~~~~~~~~~~~~~~~~~~