Skip to content

Commit

Permalink
Install requirements before PyTorch
Browse files Browse the repository at this point in the history
  • Loading branch information
yyagin committed Apr 24, 2024
1 parent 8de87ce commit dd3d9a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.x64
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN apt-get update && apt-get install -y \
git

# Install PyTorch
RUN pip3 install networkx==3.0 torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
COPY requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt
RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

# Install other Python packages
RUN pip3 install cupy-cuda11x scikit-learn
Expand Down

0 comments on commit dd3d9a2

Please sign in to comment.