Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 460 Bytes

File metadata and controls

23 lines (17 loc) · 460 Bytes
brew install just pyenv openssl@3

echo 'eval "$(pyenv init --path)"' >> ~/.zprofile
echo 'eval "$(pyenv init -)"' >> ~/.zshrc

env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.11
pyenv local 3.11

curl -sSL https://install.python-poetry.org | python3

cat << EOF > poetry.toml
[virtualenvs]
in-project = true
system-packages = true
EOF

poetry env use 3.11
poetry init # creates pyproject.toml
poetry install

poetry add --dev black flake8