Useful Tools and Packages
A curated collection of useful tools and programming language packages for development, data analysis, and more.
Environment & IDE
Packages
Python
- remove packages Remove a package and its unused dependencies.
pip install pip3-autoremove # remove "somepackage" plus its dependencies: pip-autoremove somepackage -y # to remove packages including their extra packages (recursive). pip-autoremove -y -e somepackage
Git
- remove the large file in the history
git filter-branch --prune-empty -d /dev/shm/scratch --index-filter "git rm --cached -f --ignore-unmatch geckodriver.log" --tag-name-filter cat -- --all
Enjoy Reading This Article?
Here are some more articles you might like to read next: