-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detect and draw Python dependency tree #7
Comments
BackYourStack (web only for now) Basic support for parsing Examplehttps://backyourstack.com/jonmatthis/dependencies References |
deps.cloud (server-side indexer + CLI) ExampleInstalling CLI that interacts with https://api.deps.cloud brew tap depscloud/tap
brew install depscloud-cli
# deps {"version":"0.3.5","commit":"4d94a021e15d60f20ede00df7de2fd9149159928","date":"2021-06-07T13:46:53Z"} Querying gave no results, not errors.
It is not clear if https://github.com/jonmatthis/freemocap needs to be added to the server side manually. There seems to be no command to do this from CLI. The deployment docs mention Looking at the References |
pipgrip (Python CLI) Installs all deps as wheels and analyzes them. Exampleexport GITREPO=https://github.com/jonmatthis/freemocap
podman run --rm -it python:3 bash -c "\
pip3 install pipgrip && \
git clone --depth 1 $GITREPO app && \
cd app && \
pipgrip . -v --tree \
" |
pip-tools (Python CLI) Add comments to Example
|
pipdeptree` (Python CLI) Shows dependency tree for installed packages. Example
|
Need a way to quickly draw
pip
dependency tree for troubleshooting various build problems like this one.The text was updated successfully, but these errors were encountered: