Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 473 Bytes

python.md

File metadata and controls

21 lines (15 loc) · 473 Bytes

reinstalling common pythong packages

everytime there is a new major version of python {3.9 -> 3.10} installed we need to reinstall the packages

add more packages with pip install --user <package>

generate a new requirements.txt file with

pip freeze > requirements.txt

get the file

curl -O https://raw.githubusercontent.com/llbbl/scripts/main/requirements.txt

reinstall

/opt/homebrew/bin/pip3 install -r requirements.txt