Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 477 Bytes

python.md

File metadata and controls

25 lines (19 loc) · 477 Bytes

read

useful tools

  • pipx

VSCode plugins

  • pylance: newer language server
    • remember to turn it on via Language Server
  • visual studio intellicode
  • bookmarks
  • paste and indent
  • error lense

virtual environment

Pipenv & Virtual Environments

python -m venv --prompt myCoolAppName .venv
source .venv/bin/activate
echo "when done"
deactivate