web-dev-qa-db-ja.com

Macportsポート選択コマンド

新しいコマンドおよび/または同等のものは何ですか:

python_select -L (shows available python versions)

python_select -s (sets the default version of your choice of python).

--list--set--showに変更されたことは知っていますが、それぞれを適切に使用する方法の例はないようです。たとえば、port select --setを使用すると、次のようになります。

エラー:ポート選択[--list | --set | --show] []。

24
demet8

リストするには:

port select --list python

表示するには:

port select --show python

選ぶ:

Sudo port select --set python <the python version>
49
juanchopanza