当我跑步时:
pip install --upgrade tensorflow
弹出此消息:
could not find the version that satisfies the requirement tensorflow
我该怎么办?
答案 0 :(得分:1)
这可能是因为您使用的是8.3以下的点数版本 在这种情况下,您可以使用
安装tensorflowpip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp27-none-linux_x86_64.whl
pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp27-none-linux_x86_64.whl
这些二进制文件适用于1.7版和Python 2.7版。您可以从the official installation guide获取最新的轮子网址。
答案 1 :(得分:0)
这是在Windows 10上对我有效的功能。目前,Tensorflow仅适用于 64位窗口,而不适用于32位。因此,您可以创建一个新的64位环境并在其中安装tensorflow:
.homeCard {
background-image: url("images/helicopter-in-sky-2.jpg");
width: 100%;
position: relative;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
z-index: 0;
}
.homeCardTitle {
color: white;
text-shadow: 0 0 10px black;
}
.aboutCard {
background-color: #1F1F1F;
color: white;
height: 500px;
}
注意: CONDA_FORCE_32BIT = 1设置为32位环境,而CONDA_FORCE_32BIT =设置为64位环境。
答案 2 :(得分:0)
这对我有用
conda install pip
python -m pip install --upgrade pip
pip install --ignore-installed --upgrade tensorflow