赞
踩
首先更新pip到最新版本
#方法一
python -m pip install --upgrade pip
#方法二
python -m pip install -U --force-reinstall pip
#方法三
pip install --user --upgrade pip
使用清华源临时pip下载更新tensorflow
pip install --upgrade tensorflow -i https://pypi.tuna.tsinghua.edu.cn/simple
太强了,不需要换元,只用加-i https://pypi.tuna.tsinghua.edu.cn/simple
在运行python是遇到ImportError: Could not find ‘nvcuda.dll’.
提示缺少nvcuda.dll
用以下几个命令,可以正常运行:
先删
pip uninstall protobuf
pip uninstall tensorflow
后重装
pip install protobuf
pip install --upgrade tensorflow -i https://pypi.tuna.tsinghua.edu.cn/simple
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。