-
Notifications
You must be signed in to change notification settings - Fork 1
/
quick_install.sh
21 lines (21 loc) · 982 Bytes
/
quick_install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
# this installation is very specific to Mac M1 chip, however, simple pip installs should work on any silicon
conda create --name s3grl python=3.9 # don't use python 3.10 as it breaks the PyCharm debugger flow: https://youtrack.jetbrains.com/issue/PY-52137
conda activate s3grl
conda install pytorch torchvision -c pytorch
export CC=/opt/homebrew/Cellar/llvm/13.0.1_1/bin/clang # point to the brew clang compiler
pip install torch-sparse==0.6.13
pip install torch-scatter torch-sparse torch-spline-conv torch-geometric -f https://data.pyg.org/whl/torch-1.11.0+cpu.html
pip install matplotlib==3.6.1
pip install ogb==1.3.5
pip install networkx==2.8.7
pip install pytorch_memlab==0.2.4
pip install class_resolver==0.3.10
pip install fast-pagerank==0.0.4
pip install scikit-learn==1.1.3
pip install graphistry==0.28.5
pip install scipy==1.9.3
pip uninstall grpcio; conda install grpcio=1.43.0
pip install ray==2.1.0
pip install tabulate==0.9.0
pip install tensorboardX==2.5.1