bashrcでPythonのバージョンを指定する方法
はじめに
たまに使うので備忘録として残しておきます。
bashrcとは
bashを起動したときに読み込まれる設定ファイルです。
方法
$ python -V
Python 3.7.3
$ sudo vim ~/.bashrc
$ python -V
Python 3.7.3
$ sudo vim ~/.bashrc
bashrcを開いて、以下を追記します。
bashrc
alias python=python3.8
以下のコマンドで設定を反映させます。
$ source ~/.bashrc
反映されているかどうか確認してみます。
$ python -V
Python 3.8.0
無事変更されました。
Author And Source
この問題について(bashrcでPythonのバージョンを指定する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/shimajiri/items/4fbb624bf8a191d918cf著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .