web-dev-qa-db-ja.com

ブリュー-python @ 2の再インストール

Opensslとpython @ 2、brewで問題が発生しています ここで説明しました(未解決) 。文書化された再インストールの回避策Pythonおよびopensslが機能しなかったため、Pythonをアンインストールして再インストールすることにしました。

問題は、brewでPython 2をインストールしようとすると、次のメッセージが表示されることです。

brew install python@2
Error: No available formula with the name "python@2"
==> Searching for a previously deleted formula (in the last month)...
Warning: homebrew/core is shallow clone. To get complete history run:
  git -C "$(brew --repo homebrew/core)" fetch --unshallow

python@2 was deleted from homebrew/core in commit 028f11f9e:
  python@2: delete (https://github.com/Homebrew/homebrew-core/issues/49796)
  EOL 1 January 2020.
  We gave it 1 month more to live so that people had time to migrate.
  All in all, developers had 11 years to do their migration.
  You can use the `brew extract` command and maintain python@2 in your own
  tap if necessary:
  https://docs.brew.sh/How-to-Create-and-Maintain-a-Tap

To show the formula before removal run:
  git -C "$(brew --repo homebrew/core)" show 028f11f9e^:Formula/[email protected]

If you still use this formula consider creating your own tap:
  https://docs.brew.sh/How-to-Create-and-Maintain-a-Tap

残念ながら、まだBrewのpython @ 2に依存するbrewの式がいくつかあります。たとえば、awscliletsencrypt、pr sshuttleなどです。

aws
zsh: /usr/local/bin/aws: bad interpreter: /usr/local/opt/python@2/bin/python2.7: no such file or directory

これの使い方がわかりませんbrew extractコマンドを使用して、Python @ 2を再インストールします。数式とタップが必要です。公式はpython@2。タップが何である必要があるかわかりません。

さらに、awsletsencryptなどのタップを再インストールしても、うまく機能しません。

awsclibrew reinstall awscli)、awsコマンドを実行してもエラーが発生します。

aws
/usr/local/Cellar/awscli/2.0.0/libexec/lib/python3.8/site-packages/jmespath/visitor.py:32: SyntaxWarning: "is" with a literal. Did you mean "=="?
  if x is 0 or x is 1:
/usr/local/Cellar/awscli/2.0.0/libexec/lib/python3.8/site-packages/jmespath/visitor.py:32: SyntaxWarning: "is" with a literal. Did you mean "=="?
  if x is 0 or x is 1:
/usr/local/Cellar/awscli/2.0.0/libexec/lib/python3.8/site-packages/jmespath/visitor.py:34: SyntaxWarning: "is" with a literal. Did you mean "=="?
  Elif y is 0 or y is 1:
/usr/local/Cellar/awscli/2.0.0/libexec/lib/python3.8/site-packages/jmespath/visitor.py:34: SyntaxWarning: "is" with a literal. Did you mean "=="?
  Elif y is 0 or y is 1:
/usr/local/Cellar/awscli/2.0.0/libexec/lib/python3.8/site-packages/jmespath/visitor.py:260: SyntaxWarning: "is" with a literal. Did you mean "=="?
  if original_result is 0:
usage: aws [options] <command> <subcommand> [<subcommand> ...] [parameters]
To see help text, you can run:

  aws help
  aws <command> help
  aws <command> <subcommand> help
aws: error: the following arguments are required: command
26
Pauline

次のコマンドを確認してください(私はmacOS 10.13で使用しています。新しいmacOSの場合、ソースコンパイルなしで動作する可能性があります)。

brew install pr0d1r2/python2/[email protected] --build-from-source
0
Marcin Nowicki