2
1

Poetryをインストールする

Last updated at Posted at 2023-12-15

概要

以下のpoetryの日本語バージョンのドキュメントの方法でpoetryをインストールしようとすると404エラーが帰ってくる。
https://cocoatomo.github.io/poetry-ja/

解決

以下の公式ドキュメントの方法でダウンロードする。
https://python-poetry.org/docs/

Linux, macOS, Windows (WSL)

curl -sSL https://install.python-poetry.org | python3 -

注意: システムによっては、python が Python 3 ではなく Python 2 を指している場合があります。曖昧さを避けるため、常にpython3のバイナリを推奨します。

Windows (Powershell)

(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -

Microsoft Storeを通じてPythonをインストールした場合は、上記のコマンドでpyをpythonに置き換えてください。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1