poetry new poetry-demo
cd pre-existing-project
poetry init
poetry add numpy pandas ...
poetry config virtualenvs.in-project true poetry new my-project
poetry init
poetry add numpy #and other dependencies poetry install -vvv #install dependencies poetry run python script.py # to run the shell
poetry env info poetry update poetry build