クイックサマリー

クイックサマリー

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.7が表示されます。python3

ベストアンサー1

簡単な解決策は、.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を押してください

おすすめ記事