所以我正在尝试安装tensorflow并为python项目工作(使用anaconda)。我在这里https://tensorflow-object-detection-api-tutorial.readthedocs.io/en/latest/install.html#tensorflow-installation遵循了基本的安装步骤。
这是我尝试过的两种带有错误的方法:
activate tensorflow_cpu
(tensorflow_cpu) C:\Users\sidds\anaconda>
pip install --ignore-installed --upgrade tensorflow==1.9
错误:找不到满足tensorflow == 1.9要求的版本
然后我尝试:
conda create --name tensorflow python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow-gpu
(Opened python on anaconda prompt)
>>> import tensorflow
ModuleNotFoundError: No module named 'tensorflow'
我检查了问题,发现可能必须将python的3.7版本降级到我在这里所做的:
conda create --name tensorflow python=3.5
activate tensorflow
pip install tensorflow-gpu
然后我打开我的python解释器并尝试导入给我的tensorflow
未找到模块张量流
我不明白这里是什么问题。我想加载软件包/模块,以便在以python代码导入/调用它们时不会出现任何错误。