0
点赞
收藏
分享

微信扫一扫

anaconda安装tensorflow出现错误解决

爱上流星雨 2022-04-02 阅读 120

①错误一:CondaValueError: The target prefix is the base prefix. Aborting.

使用命令创建python虚拟环境:

conda create –n tensorflow_gpu-2.3.0 python=3.7

然后报错CondaValueError: The target prefix is the base prefix. Aborting.

复制第二行代码,更改python相应的版本,运行即可解决

conda create –n tensorflow_gpu-2.3.0 python=3.7  #这个是错误的,一毛一样反正就是不行

conda create -n tensorflow_gpu-2.3.0 python=3.7  #重新复制一下反正就是行,看起来一毛一样

②错误二:ProxyError: Conda cannot proceed due to an error in your proxy configuration

关掉代理

举报

相关推荐

0 条评论