Conda 버전이 너무 차이가 많이 나는 것 같아서 conda update를 해주려고 시도함
$ conda update --all
근데 내 개인 계정은 읽을 권한이 없다고 update가 제대로 진행되지 않았다.
EnvironmentNotWritableError: The current user does not have write permissions to the target environment.
그래서 권한 설정을 다시 해주려고
$ sudo chmod 777 -R /anaconda3
입력해주었지만
() is not in the sudoers file. This incident will be reported. 라고 뜸.
하아 정말.. 역시 리눅스는 첩첩산중..
그래서 그냥 root 계정으로 들어가서
# chmod 777 -R /anaconda3
# chmod 777 -R ~/.conda/
해 준 다음에 개인 계정으로 다시 와서
$ conda update -all
해주었다.