DEV Community

Discussion on: My First Flask Application

Collapse
 
cjsmocjsmo profile image
Charlie J Smotherman

I would argue that venv which is part of the standard library is much easier to use

python3 -m venv mynewproject
cd mynewproject
source ./bin/activate
Enter fullscreen mode Exit fullscreen mode
Collapse
 
phylis profile image
Phylis Jepchumba

Thanks for your feedback. Will check on that.