Package update
A command list for you (and me) to update different package management system.
Commands
homebrew
brew upgrade
node.js
npm update
anaconda
conda update --all
poetry
poetry init poetry add poetry update
poetry alt
poetry export --without-hashes --format=requirements.txt > requirements.txt cat requirements.txt|xargs poetry add
pip
pip list --outdated pip install -U <package name>
pip alt
pip list | awk '{print $1}' | xargs -L 1 pip install -U
chocolatey
choco upgrade chocolatey