标签:http python load 技术 code 需要 pip tensor img
背景
前面在anaconda中使用tensorflow时,在深度学习目标检测的那方面出现了问题:不能导入keras
tensorflow版本过低。
首先:
打开Anaconda自带的命令提示窗口:
然后键入:(注意环境 要先激活tensorflow环境 activate tensorflow)
pip install --upgrade tensorflow
你会发现更新可能会有错误提示,提示pip版本过低,然后
python -m pip install --upgrade pip
更新完成。
想要选择需要的版本时
conda install tensorflow
发现了一位大神写的博客中有这么一句:
conda install --channel https://conda.anaconda.org/anaconda tensorflow=1.13.1
后面的数字是想要的tensorflow版本,找自己需要的下。
标签:http python load 技术 code 需要 pip tensor img
原文地址:https://www.cnblogs.com/llnick/p/14530142.html