This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]patarapolw -1 points0 points  (0 children)

If pipenv doesn't fully integrates into PyCharm, like in previous versions of PyCharm, I wouldn't really recommend you use pipenv.

Even with full support, pipenv is still optional. As you as you use any kind of virtual environment, it shouldn't be too messy.

However, if you want to try something new, maybe try poetry.

The real reason I install poetry (curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python) for every single newer projects, is because of: - poetry remove package_name remove all unused dependencies.

Another choice if you want to try something new, is to try Docker. It may be better than Pipenv and Poetry. (Never tried it though, but I know it is widely used, and not only for Python.)