Created
March 19, 2025 18:27
-
-
Save langheran/c7cf42cab100ec93aab038e61085065e to your computer and use it in GitHub Desktop.
C:\Users\NisimHurst\NDS\scripts\cmds\pipdeps.cmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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