Pythonプログラムの実行
Pythonスクリプトを引数として渡す(
python hello.py
)
-mオプション(
python -m hello
)
hello.pyをインポート
👉
python -m
エントリポイントスクリプト(処理系を指定せずに単に
hello
)
python -m <エントリポイントスクリプト>
で、Python処理系のバージョンを指定できる
👉
Why you should use python -m pip