DEV Community

Discussion on: Python: Setting Up Project Environment

Collapse
 
hentaichan profile image
ヘンタイちゃん

I'd recommend using python -m venv venv/ for managing virtual environments as is endorsed by the official documentation if you don't need work with a python 2 code base.

Collapse
 
jaeheonjee profile image
Meeooow

YES! It is also a good option. However, if we use poetry, it internally uses the virtualenv module. And virtualenv is a subset of the venv module. So I think we can use anything. :)