Skip to content

Instantly share code, notes, and snippets.

@MichaelCurrin
Last active December 25, 2024 18:47

Revisions

  1. MichaelCurrin revised this gist Dec 25, 2024. 1 changed file with 4 additions and 3 deletions.
    7 changes: 4 additions & 3 deletions install-poetry.md
    Original file line number Diff line number Diff line change
    @@ -4,16 +4,17 @@ See [Installation](https://python-poetry.org/docs/main/#installation) in the Poe

    Alternatives:

    - General. Run this outside a virtual env.
    - General. Run this outside a virtual env. Note `pipx` is preferred so use it if you have it.
    ```sh
    $ pip install poetry
    $ pipx install poetry
    ```
    - Debian/Ubuntu
    - Debian/Ubuntu. Note the latest version available can be far behind what is actually released.
    ```sh
    $ sudo apt-get update
    $ sudo apt-get -y install python3-poetry
    ```
    - macOS
    - macOS.
    ```sh
    $ brew install poetry
    ```
  2. MichaelCurrin created this gist Dec 23, 2024.
    19 changes: 19 additions & 0 deletions install-poetry.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    # Install Poetry

    See [Installation](https://python-poetry.org/docs/main/#installation) in the Poetry website.

    Alternatives:

    - General. Run this outside a virtual env.
    ```sh
    $ pip install poetry
    ```
    - Debian/Ubuntu
    ```sh
    $ sudo apt-get update
    $ sudo apt-get -y install python3-poetry
    ```
    - macOS
    ```sh
    $ brew install poetry
    ```