【发布时间】:2021-01-03 10:32:54
【问题描述】:
我尝试在 anaconda 提示符下使用以下命令安装 Tensorflow:conda install tensorflow
我收到以下错误消息:
Executing transaction: failed
ERROR conda.core.link:_execute(502): An error occurred while uninstalling package 'defaults::scipy-1.1.0-py36h672f292_0'.
PermissionError(13, 'Access is denied')
Attempting to roll back.
Rolling back transaction: done
PermissionError(13, 'Access is denied')
同样当我尝试通过conda install -c pytorch pytorch安装pytorch时:
Executing transaction: failed
ERROR conda.core.link:_execute(502): An error occurred while uninstalling package 'defaults::conda-4.5.4-py36_0'.
PermissionError(13, 'Access is denied')
Attempting to roll back.
Rolling back transaction: done
PermissionError(13, 'Access is denied')
我以管理员权限检查并运行了这些命令。 如何解决这个问题并在 conda 中安装 tensorflow?
【问题讨论】:
标签: python tensorflow installation anaconda conda