我在Mac上工作,试图将python(从anaconda)降级到3.7至3.6,但出现错误。
在终端上,我写道:conda install python = 3.6.8。
错误:
Executing transaction: failed
ERROR conda.core.link:_execute(568): An error occurred while uninstalling package 'defaults::python.app-2-py37_9'.
PermissionError(1, 'Operation not permitted')
Attempting to roll back.
Rolling back transaction: done
[Errno 1] Operation not permitted: '/Users/../anaconda3/python.app/Contents/PkgInfo' -> '/Users/../anaconda3/python.app/Contents/PkgInfo.c~'
我尝试过:
sudo env "PATH=$PATH" conda update conda
sudo conda install python=3.6
sudo -H conda update conda
conda update conda
仍然,得到相同的错误。 我该怎么办?
答案 0 :(得分:1)
首先,我可能会执行
conda search python
终端中的命令以检查conda是否实际上看到所有可用的Python版本(应该是)。
之后,您应该尝试使用sudo conda install python=3.6.0
而不是sudo conda install python=3.6
。这可能会帮助
OR ,您只需创建一个新环境并在那里安装单独的Python版本You can find the official description here