Live data from Hacker News

Pipenv: Python Dev Workflow for Humans

pipenv.pypa.io

61–64 of 64 posts

Re: Pipenv: Python Dev Workflow for Humans

#62
post #8

About a year ago or so I moved to pyenv and poetry. I have used python for over 10 years it was a game changer. I recommend this guide if your still using pip and venv. https://cjolowicz.github.io/posts/hypermodern-python-01-setu...

Very much seconded. You don't really want to use Pipenv, Poetry works much better and AFAIK is more popular.

Does poetry still only work for libraries or does it work well for apps too now?

Re: Pipenv: Python Dev Workflow for Humans

#63
post #62

Earlier quoted context omitted.

Very much seconded. You don't really want to use Pipenv, Poetry works much better and AFAIK is more popular.

Does poetry still only work for libraries or does it work well for apps too now?

What do you mean? You mean for installing Python apps on your computer? I just use `pip install --user` for that.

Re: Pipenv: Python Dev Workflow for Humans

#64
post #62

Earlier quoted context omitted.

Does poetry still only work for libraries or does it work well for apps too now?

What do you mean? You mean for installing Python apps on your computer? I just use `pip install --user` for that.

No like if you want to put a webapp in a virtualenv in a docker to run somewhere.

I remember pipenv used to support this pretty well but it was out if scope for poetry.

Edit: there's a 'poetry run' command now so it might be fixed. Don't remember what was broken.

Post reply on HN