Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- cell 너비
- EPSON
- 가로 크기
- NP
- 설치
- win to usb
- ubuntu
- Download
- WF
- jupyternotebook
- 파티션 복구
- 윈투고
- GPT
- ImageX
- 5690
- numpy
- LPD
- Dism
- 행열크기
- 전체출력
- 드라이버
- driver
- win to go
- UEFI
- mbr
- ISO
Archives
- Today
- Total
conductor
Errno 13 Permission denied / for pip and anaconda 본문
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
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