Skip to content

Instantly share code, notes, and snippets.

@BastiTee
Created May 2, 2022 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BastiTee/2ff7c2ce07a94ddcad129d4f0eb3c6d5 to your computer and use it in GitHub Desktop.
Save BastiTee/2ff7c2ce07a94ddcad129d4f0eb3c6d5 to your computer and use it in GitHub Desktop.
New Python version bootstrap command
#!/bin/bash
# This assumes that python and pyenv is already installed and configured.
# https://github.com/pyenv/pyenv#installation
# Install minimal bootstrapping environment
python -m pip install --upgrade \
pip \
pipdeptree \
pipenv \
poetry
# Check dependency tree
python -m pipdeptree
# --
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment