-
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tensorflow 2.0 installation without explicit GPU
- Loading branch information
1 parent
cd12d58
commit 6a7acde
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ LABEL maintainer="Christoph Schranz <[email protected]>" | |
# Install Tensorflow, check compatibility here: https://www.tensorflow.org/install/gpu | ||
# installation via conda leads to errors in version 4.8.2 | ||
RUN pip install --upgrade pip && \ | ||
pip install --no-cache-dir "tensorflow-gpu>=2.1.*" && \ | ||
pip install --no-cache-dir "tensorflow==2.3.2" && \ | ||
pip install --no-cache-dir keras | ||
|
||
# Install PyTorch with dependencies | ||
|