public_notes/content/20231129211719 poetry.md

24 lines
No EOL
976 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 20231129211719 poetry
#tech #python
PoetryはPythonのパッケージマネージャの一つ。
20240810 今は[[20240722101442 Rye|Rye]]を使っているので、poetryは使っていない。
プロジェクトを作るのにも使える。 (ver 1.8以降) cf. [[20240311211049 pythonのプロジェクト構成]]
[Poetry - Python dependency management and packaging made easy](https://python-poetry.org/)
インストールは debian系であれば
```bash
curl -sSL https://install.python-poetry.org | python3 -
```
インストールしたら、
```
$ poetry config virtualenvs.in-project true
```
を実行するのをわすれないで!!(何回も忘れた)
## Refs.
- [Poetryをサクッと使い始めてみる #Python - Qiita](https://qiita.com/ksato9700/items/b893cf1db83605898d8a)
- [pyenv+PoetryでのPython環境構築方法を覚えられない人のための手順書 #Python - Qiita](https://qiita.com/Ryku/items/512a6744bfa9903bf2dd)