Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ We follow the virtual environment approach to install the tensorflow's Python in
virtualenv -p python3 $tensorflow_venv
source $tensorflow_venv/bin/activate
pip install --upgrade pip
pip install --upgrade tensorflow==2.3.0
pip install --upgrade tensorflow
```
It is highly recommanded to keep the consistency of the TensorFlow version for the python and C++ interfaces.
Everytime a new shell is started and one wants to use `DeePMD-kit`, the virtual environment should be activated by
Expand All @@ -78,7 +78,7 @@ virtualenv -p python3.7 $tensorflow_venv
```
If one does not need the GPU support of deepmd-kit and is concerned about package size, the CPU-only version of tensorflow should be installed by
```bash
pip install --upgrade tensorflow-cpu==2.3.0
pip install --upgrade tensorflow-cpu
```
To verify the installation, run
```bash
Expand Down