LeoGitGuy
commited on
Commit
•
ca6db82
1
Parent(s):
9bf0a0f
changed reqs
Browse files- Dockerfile +2 -1
- requirements.txt +0 -1
Dockerfile
CHANGED
@@ -9,7 +9,8 @@ COPY ./requirements.txt /code/requirements.txt
|
|
9 |
|
10 |
# Install requirements.txt
|
11 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
12 |
-
|
|
|
13 |
# Set up a new user named "user" with user ID 1000
|
14 |
RUN useradd -m -u 1000 user
|
15 |
# Switch to the "user" user
|
|
|
9 |
|
10 |
# Install requirements.txt
|
11 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
12 |
+
RUN pip uninstall torch-scatter torch-sparse torch-geometric torch-cluster --y
|
13 |
+
RUN pip install torch-scatter -f https://data.pyg.org/whl/torch-1.11.0+cpu.html
|
14 |
# Set up a new user named "user" with user ID 1000
|
15 |
RUN useradd -m -u 1000 user
|
16 |
# Switch to the "user" user
|
requirements.txt
CHANGED
@@ -11,5 +11,4 @@ pygraphviz
|
|
11 |
pandas
|
12 |
numpy
|
13 |
beautifulsoup4
|
14 |
-
torch-scatter
|
15 |
|
|
|
11 |
pandas
|
12 |
numpy
|
13 |
beautifulsoup4
|
|
|
14 |
|