I tried to install graphviz on anaconda after getting error:
Exception: "dot" not found in path.
So I did conda install graphviz, but received this error in the terminal:
UnsatisfiableError: The following specifications were found to be in conflict:
fontconfig
freexl
graphviz
Use conda info <package> to see the dependencies for each package.
Related
I am trying to install mgwr on my mac where I have installed both python 2.7.x and python 3.7.x
conda install -c conda-forge mgwr
During the installation I get the following error
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict:
- mgwr
- scandir
Use "conda info <package>" to see the dependencies for each package.
I am trying to install the cx_freeze using anaconda prompt. Following what's on their website, I used:
conda install -c pyzo cx_freeze
I get this error:
UnsatisfiableError: The following specifications were found to be in conflict:
- cx_freeze
- wincertstore
Use "conda info <package>" to see the dependencies for each package.
Does anyone know how I have to deal with dependencies here?
Thanks.
So as of now, simply using pip worked for me. I opened the conda prompt and used the following:
pip install cx_freeze
I am trying to install opensv3 for Anaconda using the below command
conda install -c menpo opencv3
But I am getting the below error
UnsatisfiableError: The following specifications were found to be in conflict:
- opencv3
- zict
Not sure why Opencv3 is already there and why zict is a problem.
Any way I can uninstall both of them and then probably start fresh installation ?
Or what would be the correct way to resolve this ?'
EDIT: I am on Python 3.6. I have tensorflow and numpy already installed.
I'm trying to install matplotlib-basemap through Anaconda prompt, but it's just not working.
When I type:
conda install basemap
The error it gives is:
UnsatisfiableError: The following specifications were found to be in conflict:
- basemap
- xlsxwriter
Does this mean I need to unistall xlsxwriter (even though I need it)? How do I unistall this then?
I also tried downloading it through https://www.lfd.uci.edu/~gohlke/pythonlibs/#basemap:
pip install basemap-1.1.0-cp27-cp27m-win_amd64.whl
but then the error is:
basemap-1.1.0-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.
It worked when I typed in:
conda install -c conda-forge basemap
I had to do the same thing several times. Run as administration>>> "Anacodna Prompt" then type:
conda install -c conda-forge basemap
it worked for me.
I am trying to install graph-tool with anaconda. This is how I went about that:
conda config --add channels jithinpr2
followed by
conda install -c jithinpr2 graph-tool=2.18
The second command gives the following error:
The following specifications were found to be in conflict:
- graph-tool 2.18*
Use "conda info <package>" to see the dependencies for each package.
I tried to follow their instructions and do conda info graph-tool and conda info graph-tool=2.18, but both resulted in:
Error: Package missing in current win-64 channels:
- graph-tool 2.18*
What am I doing wrong? I am running python 2.7 by the way.