sketchpad

A collection of personal and technical notes.

View the Project on GitHub arantebw/sketchpad

How to switch the Python version currently used by poetry?

pyenv install 3.11 # if not already installed

# from your project directory
pyenv shell 3.11
poetry env use $(pyenv which python)

# exit the terminal using the old environment
source .venv/bin/activate