私はpython3.7をインストールしましたが、それをデフォルトのpythonにする方法がわかりません。
下記参照:
~/Documents/robosuite$ python3.7
Python 3.7.1 (default, Oct 22 2018, 11:21:55)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
KeyboardInterrupt
>>>
~/Documents/robosuite$ python3
Python 3.6.7 (default, Oct 22 2018, 11:32:17)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
コマンドpython3
を使用したときにpython3.7が表示されるようにしたい
簡単な解決策は.bashrc
を編集して次の行を追加することです:
alias python3=python3.7
python3
と記述すると、python3.7
に置き換えられます。
または、推奨されるコマンドupdate-alternatives
を使用できます。
Sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1
Sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 2
したがって、ここではpython3.7
がpython3.6
よりも優先されます。次に使用します:
Sudo update-alternatives --config python3
満足したらEnterキーを押します