Hacker News new | ask | show | jobs
by chasenjohnson 811 days ago
This is the way. I moved everyone I work with at over to the pyenv, virtualenv, poetry stack. Once you get set up it’s pretty smooth sailing. It is a shame that so many tools are needed to work with python, but I was happy to finally find something that works.
1 comments

Curiously, post-checkout, how do you go about creating your venv and installing your project dependencies?

The shortest ritual I could figure out so far is:

    pyenv install -s && pyenv exec pip install poetry && pyenv exec poetry install
and I wonder what might be an easier incantation that still works.