Reputation: 47
I have ubuntu version 15.10 and anaconda version conda 4.4.10. My problem is I am trying to install the module/package pydub and the command to do that is: conda install -c auto pydub #(see https://anaconda.org/auto/pydub)
The error message I am getting is this:
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict: - gevent - pydub Use "conda info " to see the dependencies for each package.
Can you please help, I have run out of ideas.
Thanks.
Upvotes: 0
Views: 1291
Reputation: 175
Have you tried executing the suggested command conda info
?
It appears that gevent
and pydub
packages are in conflict from the output you've provided.
It should work if you resolve the conflict in the dependencies manually by updating gevent
and then pydub
.
Upvotes: 1