1. 삭제 앱을 설치해서 삭제하는 방법 -> 실패
구글링해서 많이 나온 결과인 삭제 앱 설치한 후 삭제를 할려고 하니..
아나콘다 네비게이터가 실제와는 다르게 용량이 너무 작았다.
2. 공홈에 있는 방법으로 삭제 -> 실패
http://docs.anaconda.com/anaconda/install/uninstall/?highlight=uninstall
Uninstalling Anaconda — Anaconda 2.0 documentation
Uninstalling Anaconda To uninstall Anaconda, you can do a simple remove of the program. This will leave a few files behind, which for most users is just fine. See Option A. If you also want to remove all traces of the configuration files and directories fr
docs.anaconda.com
anaconda-clean --yes
Backup directory: /Users/myhome/.anaconda_backup/2019-05-19T145347
Error: Unable to move /Users/myhome/.continuum
anaconda-clean --yes 하면 백업파일만 생성하고 삭제하지 않음
3. 일일이 지워주는 방법
나의 경우는 아나콘다가 // 밑에 있었음
가서 삭제
cd /
sudo rm- rf anaconda
홈디렉토리로 가서
sudo rm -rf .anaconda_backup
cd
sudo rm -rf .anaconda_backup
.bash_profile 편집
홈 디렉토리에서 .bash_profile 연 후 아나콘다 패스 추가부분 삭제해준다
cd
vi .bash_profile
# added by Anaconda3 4.2.0 installer
export PATH="//anaconda/bin:$PATH"
위 두줄 찾아서 삭제
나의 경우에는 없었지만 홈디렉토리에 아래 숨김파일이 있는 경우도 삭제
sudo rm -rf ~/.condarc ~/.conda ~/.continuum
아래는 아나콘다를 삭제하는 여러 방법이 중첩적으로 나열되어있으니 나에게 맞게 보면서 삭제하면 될 것이다
https://code-examples.net/ko/q/1589f93
아나콘다 Python Anaconda-안전하게 제거하는 방법
Mac에 Python Anaconda를 설치했습니다(OS Mavericks). Mac에서 파이썬의 기본 버전으로 되돌리고 싶었습니다. 이 작업을 수행하는 가장 좋은 방법은 무엇입니까? ~/anaconda 디렉토리를 삭제해야합니까? 다른 변경 사항이 필요합니까? 현재 which python 실행할 때이 경로를 얻습니다./Users/usern
code-examples.net
드디어 아나콘다 커스텀 파이썬의 저주에서 해방되었다