How's this better than pipenv? Also, does it work on Heroku?
> How's this better than pipenv? it's not, because it is literally pipenv > Also, does it work on Heroku? yes
Pipenv: Python Dev Workflow for Humans
61–64 of 64 posts
Re: Pipenv: Python Dev Workflow for Humans
#62About 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.
Re: Pipenv: Python Dev Workflow for Humans
#63Earlier 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?
Re: Pipenv: Python Dev Workflow for Humans
#64Earlier 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.
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.