我想在离线计算机上安装张量流。 (出于安全原因在防火墙后面)
我已经在计算机上安装了conda。 (conda 4.7.12)
我从https://repo.continuum.io/pkgs/main/linux-64/下载了tensorflow-1.8.0-0.tar.bz2 运行这些命令
conda install -c conda tensorflow-1.8.0-0.tar.bz2
#results
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
现在我打开python
Python 3.7.4 (default, Aug 13 2019, 20:35:49)
[GCC 7.3.0] :: Anaconda, Inc. on linux
但是我得到这个错误
>>> import tensorflow as tf
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'tensorflow'