Python Poetry Cheatsheet
Create a new Poetry project:
# poetry new <project-name>
# Ex:
poetry new rocketship
This creates a Poetry project with the following directory structure:
Activate the Python virtual environment:
cd ./rocketship
poetry shell
Deactivate the Python v...
vikasz.hashnode.dev1 min read
Sandeep Pal
Python/Django Developer
good