18.10에서 Ubuntu 19.04로 업데이트하는 동안 어떻게 든 Python 설치를 엉망으로 만들었습니다.
python 명령은 대신 내 아나콘다의 Python을 가리킵니다 /usr/bin/python
.
> which python
/home/username/anaconda3/bin/python
내 $경로:
--> echo $PATH
/home/username/.nvm/versions/node/v11.13.0/bin:/home/username/anaconda3/bin:/home/username/anaconda3/condabin:/usr/local/cuda-9.0/bin:/home/username/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin}
.bashrc:
cat .bashrc | grep anaconda
__conda_setup="$(CONDA_REPORT_ERRORS=false '/home/username/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ -f "/home/username/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/username/anaconda3/etc/profile.d/conda.sh"
\export PATH="/home/username/anaconda3/bin:$PATH"
cat .bashrc | grep python
nothing
cat .bashrc | grep PATH
export PATH=/usr/local/cuda-9.0/bin${PATH:+:$PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda-9.0/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
\export PATH="/home/username/anaconda3/bin:$PATH"
답변1
/usr/bin
Anaconda 설치 전에 시스템 디렉터리 등을 넣도록 $PATH를 변경합니다 /bin
. 아마도 .bashrc
.