https://github.com/jlevy/simple-modern-poetry-template
GITHUB TEMPLATE — Click "Use this template" above or see link below for docs:
https://github.com/jlevy/simple-modern-poetry-template
Last synced: 2 months ago
JSON representation
GITHUB TEMPLATE — Click "Use this template" above or see link below for docs:
- Host: GitHub
- URL: https://github.com/jlevy/simple-modern-poetry-template
- Owner: jlevy
- License: mit
- Created: 2025-02-09T01:59:32.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-03-10T19:16:30.000Z (3 months ago)
- Last Synced: 2025-03-28T03:06:25.033Z (3 months ago)
- Language: Python
- Homepage: https://github.com/jlevy/simple-modern-poetry
- Size: 12.7 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# _changeme_
\[
**☞☞☞ This is the readme for a project from the
[simple-modern-poetry](https://github.com/jlevy/simple-modern-poetry)
template.**
Fill it in and delete this message!
Below are brief instructions on setup and development workflows that you may
use or modify for your project.
\]## Installing Python, pipx, and Poetry
Sadly, there are many, many ways to install and set up your Python environment, each
with its own pitfalls.This is a quick cheat sheet for one of the simplest and most reliable ways to set up
**Python 3.11+** and **Poetry 2.0+** (what you should use as of 2025) using
[**pyenv**](https://github.com/pyenv/pyenv) and
[**pipx**](https://github.com/pypa/pipx).For macOS:
```shell
brew update
brew install pyenv pipx
```For Ubuntu:
```shell
curl https://pyenv.run | bash
apt install pipx
```Now you can install a current Python and Poetry:
```shell
pyenv install 3.13.2 # Pick the version you want.
pipx install poetry # Or use `pipx upgrade poetry` if you've done this before.
```For Windows or other platforms, see the pyenv and poetry instructions.
## Development
For development workflows, see [development.md](development.md).
* * *
*This project was built from
[simple-modern-poetry](https://github.com/jlevy/simple-modern-poetry).*