Vineet Naik

Results 104 comments of Vineet Naik

Not sure if I have understood what you mean by a `project directory`. But I am guessing you want to get all direct dependencies of a particular package, let's say...

If your repo has a `setup.py` file, you can try this: 1. Create a new virtualenv 2. Run `pip install .` from the project root. 3. Run the above command...

This is a very specific use case and I don't think the code for it belongs inside pipdeptree. But even if we decide to add it, it would be extremely...

> I don't think any such complex logic would be necessary. It would be just the global pipdeptree calling the one from the virtualenv, that's it. This sounds like a...

Is the Python interface for graphviz installed? - https://pypi.python.org/pypi/graphviz

I have thought about this and I think it would be better to keep it optional. Firstly, the functionality to output the dependency tree as a graph is optional. And...

It does fail with the following, ``` graphviz is not available, but necessary for the output option. Please install it. ``` I don't think this tool should should tell the...

@beruic Fair point actually. The error just says install `graphviz` so one is more likely to think about the graphviz executable and not the python interface. Don't mind rewording the...

Planning to specify `graphviz` as an extra dependency in setup.py in the next release.

> Indeed, the pip team is so small with regards to the number critical tasks that need to be done, that it is not the right time to increase the...