デフォルトのpythonコマンドは/usr/bin/pythonの代わりにanacondaを指します。

デフォルトのpythonコマンドは/usr/bin/pythonの代わりにanacondaを指します。

18.10からUbuntu 19.04にアップデートしている間、何とかPythonのインストールをめちゃくちゃにしました.

pythonコマンドは代わりに私のanacondaの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/binAnacondaのインストール前にシステムディレクトリなどを入れるように$ PATHを変更します/bin。おそらく.bashrc

おすすめ記事