conductor

Errno 13 Permission denied / for pip and anaconda 본문

카테고리 없음

Errno 13 Permission denied / for pip and anaconda

Hemos 2019. 12. 23. 17:48

 

3

 

According to conda's github page:

Its may because of ~/anaconda3's owner and group. You can change this directories owner and group by this command:

sudo chown -R $USER:$USER ~/anaconda3


According to this answer:

If the above command not works for you, this one may be helpful:

sudo env "PATH=$PATH" conda update conda

shareimprove this answer

https://askubuntu.com/questions/1073077/errno-13-permission-denied-for-pip-and-anaconda

 

"Errno 13 Permission denied" for pip and anaconda

I was trying to update anaconda by: conda update conda it returns: PermissionError(13, 'Permission denied') Then I found out that the same happens for pip: pip install --upgrade pip returns: ...

askubuntu.com