Last active
December 25, 2024 18:47
Revisions
-
MichaelCurrin revised this gist
Dec 25, 2024 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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. Note `pipx` is preferred so use it if you have it. ```sh $ pip install poetry $ pipx install poetry ``` - 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. ```sh $ brew install poetry ``` -
MichaelCurrin created this gist
Dec 23, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 ```