ubuntu conda install ERROR missing write permission错误
报错:
ondaIOError: 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
参考文献:https://blog.csdn.net/u012223913/article/details/76532776
ubuntu conda install ERROR missing write permission错误的更多相关文章
- ubuntu 装tensorflow出现 conda install ERROR missing write permission错误
		通过搜索tensorflow然后运行,例如:$ conda install --channel https://conda.anaconda.org/jjh_cio_testing tensorflo ... 
- Android 出现 maybe missing INTERNET permission 错误问题解决
		在AndroidManifest.xml中,需要进行如下配置:<manifest> //加入以下许可 <uses-permission android:name="andr ... 
- ubuntu更换pip install,apt-get,conda install 成国内源
		解决ubuntu的pip和apt-get太慢的问题 ubuntu国外龟速的源实在难受,还是自己动手更改一下各种pip 源和apt-get 的源吧,换了之后速度令人舒适! 更换pip源成清华源 临时使用 ... 
- Could not install packages due to an Environment Error: [Errno 13] Permission denied 解决方案
		执行pip install 报错如下: Could not install packages due to an Environment Error: [Errno 13] Permission de ... 
- gerrit代码审核工具之“error unpack failed error Missing unknown”错误解决思路
		使用gerrit代码审核工具时遇到error: unpack failed: error Missing unknown d6d7c89bd1d77f44c5c8e99437aaffbfc0684e7 ... 
- Ubuntu  vsftp复制文件到远端时错误,Permission denied
		Ubuntu 下复制文件到远端时错误,Permission denied 失败原因如下: (1)vsftp默认配置不允许上传文件 解决办法:修改配置文件 vi /etc/vsftpd.conf. 将& ... 
- git push ERROR: missing Change-Id in commit message footer
		今天上传代码时候报告错误:$ git push origin HEAD:refs/for/branch*Counting objects: 7, done.Delta compression usin ... 
- conda install 出错
		在下载包时出现下面的错误: userdeMBP:pytorch user$ conda install -n deeplearning matplotlib Solving environment: ... 
- error: [Errno 13] Permission denied: '/usr/local/lib/处理方法
		在ubuntu系统下使用pip 命令安装包时,出现以下类似错误提示: error: [Errno 13] Permission denied: '/usr/local/lib/python2.7/di ... 
随机推荐
- ImportError: No module named libqt_gui_cpp_shiboken
			在使用 rosrun rqt_publisher rqt_publisher 调用ROS图形化界面的过程中出现: 而且在使用图像化界面添加/cmd_vel时,无法添加,命令窗口显示“段错误”. 在网上 ... 
- 网站域名加WWW与不加WWW区别
			不知道站长童鞋们有没有注意到,很多网站在打开时,地址栏里的域名有的带有“www.”,而有的网站前面则没有带“www.”这其中有什么区别呢?作为一个新站长,我什么都不懂,就在百度上搜了一艘,也没找到一个 ... 
- Datamation Index
			Datamation Index Understand how to handle big data and improve organizational agility to support ... 
- iphone开发中调用系统打电话功能
			iphone开发中调用打电话功能,一般有2种: 1.系统的打电话代码,不返回当前程序: Java代码 [[UIApplication sharedApplication] openURL:[NSURL ... 
- APICloud修改最低操作系统版本要求
			在APICloud中的云编译选项中: 点击高级设置,就可以修改对应的操作系统版本要求: 
- SuperSocket 服务管理器 (ServerManager)
			什么 SuperSocket 服务管理器? SuperSocket 服务管理器是一个让你能够在客户中用图形化界面来管理和监控你的SuperSocket服务器程序的组件. 在服务器端配置服务器管理器 事 ... 
- H3C 帧中继配置示例
- 基于@AspectJ注解配置切面与基于XML配置切面
			1. Waiter目标类 package com.smart.aop.advice.pointcut; public class Waiter { public void greetTo(String ... 
- H3C 通配符掩码
- UVa 12325 - Zombie's Treasure Chest-[分类枚举]
			12325 Zombie’s Treasure Chest Some brave warriors come to a lost village. They are very lucky and fi ... 
