解决问题
ERROR: Could not install packages due to an EnvironmentError: 访问。: 'c:\\programdata\\anaconda3\\lib\\site-packages\\~il\ 2.pyd' Consider using the `--user` option or check the permissions.
解决思路
由于环境原因,无法安装程序包错误:[WinError 5]拒绝访问
解决方法
考虑使用“--user”选项或检查权限
pip install --user tensorflow==1.10.0
或者
pip install tensorflow==1.10.0 --user