Hacker News new | ask | show | jobs
by Hackbraten 813 days ago
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.