forked from stemylonas/DeepSurf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
31 lines (27 loc) · 704 Bytes
/
install.sh
File metadata and controls
31 lines (27 loc) · 704 Bytes
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
conda create -n deepsurf python=3.6.9
conda activate deepsurf
sudo apt update
sudo apt install -y p7zip
sudo apt install -y libopenbabel-dev
sudo apt install -y g++
sudo apt install -y swig
conda install pytorch==1.2.0 torchvision==0.4.0 cudatoolkit=10.0 -c pytorch
conda install -c conda-forge openbabel
pip install tensorflow-gpu==1.13.1
pip install scikit-learn==0.20.3
git clone https://github.com/stemylonas/DeepSurf
cd DeepSurf
cd lds
chmod a+x compile.sh
./compile.sh
cd ..
pip install gdown --ignore-installed certifi
gdown 1nIBoD3_5nuMqgRGx4G1OHZwLsiUjb7JG
p7zip -d models.7z
wget www.cgl.ucsf.edu/Overview/ftp/dms.zip
unzip dms.zip
rm dms.zip
cd dms
chmod 777 -R .
sudo make install
cd ..