DEV Community

Discussion on: Beginner Guide on “Poetry”, New Python dependency management tool

Collapse
 
yukinagae profile image
Yuki Nagae • Edited

Poetry uses or creates a virtual environment according to the below doc. Maybe we cannot escape from virtual environments when we use Python...

Poetry will check if it's currently inside a virtualenv and, if not, will use an existing one or create a brand new one for you to always work isolated from your global Python installation.

see: poetry.eustace.io/docs/basic-usage...