I want to be able to create graphical decision trees in Python, and I'm currently trying to install both pydot
and graphviz
.
I use Anaconda as my environment (along with Spyder) and try to run the following lines of code
conda install -c https://conda.binstar.org/t/TOKEN/j14r pydot
with the result
Error: unknown host: http://repo.continuum.io/pkgs/pro/win-32/ Error: unknown host: http://repo.continuum.io/pkgs/free/win-32/ Error: unknown host: https://conda.binstar.org/t/TOKEN/j14r/win-32/ Error: No packages found matching: pydot
I also tried using pip install pydot
and pip install graphviz
with similar results:
Downloading/unpacking pydot Cannot fetch index base URL https://pypi.python.org/simple/ Could not find any downloads that satisfy the requirement pydot Cleaning up... No distributions at all found for pydot Storing complete log in [...]
I get really bored trying to figure out how to do this, so I was hoping that someone out there could give me some advice.
thanks
source share