Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I use conda to install pydot?

Tags:

Trying to generate some PDF's of decision trees by following some of the sklearn documentation, but can't get Pydot on my machine. Is there any way to use the conda installer to install the pydot package? Based on the command line errors I'm seeing, it may be a 64bit issue. I use binstar search to find the package channel:

C:\binstar search -t conda 

Which gives the recommendation of looking at the packages in detail using

binstar show j14r/pydot

Which then tells me to

conda install --channel https://conda.binstar.org/j14r pydot

But when I run the conda install command, I get the following error (same error for all the pydot packages listed):

Fetching package metadata: ...
Error: No Packages found in current win-64 channels matching: pydot
You can search for this package with 

binstar search t conda pydot

which sends me back to the beginning of this all. Any ideas? Thanks all.

like image 673
joe Avatar asked Oct 13 '14 21:10

joe


People also ask

What is Pydot in Python?

The pydot package is an interface to Graphviz. It is written in pure Python, and it can parse and dump into the DOT language used by Graphviz. A folder tree structure in a computer comprising of a directory, sub-directory, files, etc. is also an example of a directed graph.


1 Answers

This may help for someone who is looking for For Anaconda on Windows 10 64 Bit, Environment: Windows 10 64 Bit, Python 3.5.2, Anaconda 4.2.0 (64-bit)

  1. Download "graphviz-2.38.msi" from https://graphviz.gitlab.io/_pages/Download/Download_windows.html
  2. Execute the "graphviz-2.38.msi" file
  3. Add the graphviz bin folder to the PATH system environment variable (Example: "C:\Graphviz2.38\bin")
  4. Go to Anaconda Prompt using start menu (Make sure to right click and select "Run as Administrator". We may get permission issues if Prompt as not opened as Administrator)
  5. Execute the command: conda install graphviz
  6. Execute the command: pip install git+https://github.com/nlhepler/pydot.git
  7. Execute the command "conda list" and make sure pydot and graphviz modules are listed. Thanks
like image 170
Rajesh Kumar Raj Avatar answered Oct 05 '22 17:10

Rajesh Kumar Raj