-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsteps.txt
More file actions
41 lines (26 loc) · 1.28 KB
/
steps.txt
File metadata and controls
41 lines (26 loc) · 1.28 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
33
34
35
36
37
38
39
40
41
1) cd /work3/s174483/;
2) wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
2) bash Miniconda3-latest-Linux-x86_64.sh
When asked where to install, type /work3/s174483/miniconda3/
Update conda
conda update -n base -c defaults conda
# --- Making the virtual environment for the CPU --- #
conda create --clone base --name pregcpu
pip install torch==1.11.0
pip install numpy
Follow the "Installation via Pip Wheels" guide here, i.e type the lines below for torch 1.11.0 and the CPU.
https://pytorch-geometric.readthedocs.io/en/latest/notes/installation.html
pip install torch-scatter -f https://data.pyg.org/whl/torch-1.11.0+cpu.html
pip install torch-sparse -f https://data.pyg.org/whl/torch-1.11.0+cpu.html
pip install torch-geometric
pip install wandb
# --- Making the virtual environment for the GPU --- #
conda create --clone base --name preggpu
pip install torch==1.11.0
pip install numpy
Follow the "Installation via Pip Wheels" guide here, i.e type the lines below for torch 1.11.0 and the GPU.
https://pytorch-geometric.readthedocs.io/en/latest/notes/installation.html
pip install torch-scatter -f https://data.pyg.org/whl/torch-1.11.0+cu102.html
pip install torch-sparse -f https://data.pyg.org/whl/torch-1.11.0+cu102.html
pip install torch-geometric
pip install wandb