Spaces:
Sleeping
Sleeping
Erva Ulusoy
commited on
Commit
·
7c85396
1
Parent(s):
f32eec3
updated requirements
Browse files- requirements.txt +4 -4
- setup.sh +4 -3
requirements.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
pandas
|
2 |
-
torch==1.12.1
|
3 |
-
torch_scatter -
|
4 |
-
torch_sparse -
|
5 |
-
torch_cluster -
|
6 |
torch_geometric==2.2.0
|
7 |
gdown
|
|
|
1 |
pandas
|
2 |
+
torch==1.12.1 --find-links https://data.pyg.org/whl/torch-1.12.1+cpu.html
|
3 |
+
torch_scatter --find-links https://data.pyg.org/whl/torch-1.12.1+cpu.html
|
4 |
+
torch_sparse --find-links https://data.pyg.org/whl/torch-1.12.1+cpu.html
|
5 |
+
torch_cluster --find-links https://data.pyg.org/whl/torch-1.12.1+cpu.html
|
6 |
torch_geometric==2.2.0
|
7 |
gdown
|
setup.sh
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
#!/bin/bash
|
2 |
-
pip uninstall torch-scatter
|
3 |
# pip install torch-scatter -f https://data.pyg.org/whl/torch-1.12.0+cpu.html
|
4 |
-
pip install
|
5 |
-
# pip install torch-cluster -f https://data.pyg.org/whl/torch-1.12.0+cpu.html
|
|
|
|
1 |
#!/bin/bash
|
2 |
+
pip uninstall torch-scatter torch_sparse torch_geometric torch_cluster torch_geometric --y
|
3 |
# pip install torch-scatter -f https://data.pyg.org/whl/torch-1.12.0+cpu.html
|
4 |
+
pip install torch_sparse -f https://data.pyg.org/whl/torch-1.12.0+cpu.html
|
5 |
+
# pip install torch-cluster -f https://data.pyg.org/whl/torch-1.12.0+cpu.html
|
6 |
+
pip install torch_geometric
|