Skip to content

Instantly share code, notes, and snippets.

@langheran
Created March 19, 2025 18:27
Show Gist options
  • Save langheran/c7cf42cab100ec93aab038e61085065e to your computer and use it in GitHub Desktop.
Save langheran/c7cf42cab100ec93aab038e61085065e to your computer and use it in GitHub Desktop.
C:\Users\NisimHurst\NDS\scripts\cmds\pipdeps.cmd
@echo off
call .\venv\Scripts\activate.bat
@REM pip install pipdeptree
echo ========================
echo Installed packages
echo ========================
pip show %*
echo ========================
echo Reverse Dependencies
echo ========================
pipdeptree --reverse --packages %*
echo ========================
echo Dependencies
echo ========================
pipdeptree --packages %*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment