When installing pydot, conda wants me to have an older version of python. How can I fix this? Will this package not work with my current python version?
conda install pydot
Fetching package metadata .........
Solving package specifications: .
UnsatisfiableError: The following specifications were found to be in conflict:
- pydot -> pyparsing 1.5.6 -> python 3.3*
- python 3.5*
Use "conda info <package>" to see the dependencies for each package.
/usr/lib/python3/dist-packages/dot_parser.py
. The default location of pydot.py is/usr/lib/python3/dist-packages/pydot.py
. You can use symbolic links to tell conda the paths to these files. – karel Jun 05 '17 at 00:33lib/python3.5/site-packages
directory which for you would be something like:/home/Rik/anaconda3/lib/python3.5/site-packages
if Rik is your username. – karel Jun 05 '17 at 00:53