我是靠谱客的博主 单身樱桃,最近开发中收集的这篇文章主要介绍ubuntu conda install ERROR missing write permission错误,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
reference:
https://askubuntu.com/questions/726184/missing-write-permissions-in-home-user-anaconda2
报错:
CondaIOError: Missing write permissions in: /usr/local/anaconda3
#
# You don't appear to have the necessary permissions to install packages
# into the install area '/usr/local/anaconda3'.
# However you can clone this environment into your home directory and
# then make changes to it.
# This may be done using the command:
#
# $ conda create -n my_root --clone="/usr/local/anaconda3"
问题在于 anaconda所在文件夹只有root 才有权限,而 sudo 对于conda没用,解决方案是修改文件夹权限给当前用户
sudo chown -R usr foldername
比如我的用户名是 adrianna, anaconda 的安装目录是/usr/local/anaconda3:
adrianna@adrianna-ubuntu:~$ sudo chown -R adrianna /usr/local/anaconda3
最后
以上就是单身樱桃为你收集整理的ubuntu conda install ERROR missing write permission错误的全部内容,希望文章能够帮你解决ubuntu conda install ERROR missing write permission错误所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复