How to list package versions available with conda
You can just type “conda search” which will give you something like the following.
You can just type “conda search” which will give you something like the following.
The graphviz conda package is no Python package. It simply puts the graphviz files into your virtual env’s Library/ directory. Look e.g. for dot.exe in the Library/bin/ directory.To install the `graphviz` **Python package**, you can use `pip`: `conda install pip` and `pip install graphviz`. Always prefer conda packages if they are available over pip packages. Search for the package you need (`conda search pkgxy`) and … Read more