5 ms·
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
by chasenjohnson 2y 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.
- Hackbraten 2y agoCuriously, 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.