poésie réinstaller Venv

# Stop the current virtualenv if active or alternative use
# `exit` to exit from a Poetry shell session
deactivate

# Remove all the files of the current environment of the folder we are in
rm -rf `poetry env info -p` 

# Reactivate Poetry shell
poetry shell

# Install everything
poetry install
Cruel Cow