You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Install pyenv
curl https://pyenv.run | bash
# Add pyenv to your shellexport PATH="$HOME/.pyenv/bin:$PATH"eval"$(pyenv init --path)"eval"$(pyenv init -)"eval"$(pyenv virtualenv-init -)"# Install a specific version of Python
pyenv install 3.10.14
# Set the local version of Python for the project
pyenv local 3.10.14
Install poetry
# Install poetry
curl -sSL https://install.python-poetry.org | python3 -
# Add poetry to your path if not already addedexport PATH="$HOME/.local/bin:$PATH"# Navigate to the project directory and install dependenciescd say_hello
poetry install