使用conda打包时遇到 The current user does not have write permissions to the target environm解决方案

在安装pytorch时可能会出现EnvironmentNotWritableError: The current user does not have write permissions to the target environment.的情况。其主要原因是用户没有对anaconda3文件夹的读写权限,造成其原因可能是由于在安装anaconda时使用了管理员权限。

最简单的方法就是撤销对这个文件夹权限限制,定位到anaconda3同级文件夹下打开终端执行如下代码即可:

sudo chmod 777 -R anaconda3

 

你可能感兴趣的:(Depth,learning,ubuntu,文件读写权限,conda,pytorch)