View Single Post
Old 06-29-2017, 08:03 AM   #37
dickloraine
Guru
dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.dickloraine ought to be getting tired of karma fortunes by now.
 
Posts: 631
Karma: 7544080
Join Date: Apr 2013
Location: Berlin
Device: PRS 350, Kobo Aura
Quote:
Originally Posted by American_Desi View Post
Done, and this is what happened:

Fetching package metadata .........
Solving package specifications: .

UnsatisfiableError: The following specifications were found to be in conflict:
- navigator-updater -> pyqt >=5.6 -> qt 5.6.*
- pyqt 4* -> qt 4.8.6
- pyqt 4* -> sip 4.16.5
Use "conda info <package>" to see the dependencies for each package.

Is there a way to "uninstall" the newer version of pyqt? If not, what should I do next?
There is. We will make an environment for comictagger. Type the following in the terminal:
conda create -n py27_qt4 python=2.7 anaconda
source activate py27_qt4
conda remove pyqt
conda install pyqt=4

If you want to start comictagger, you of course always have to switch to that environment first. You could of course make a batch script in the comictagger directory , so that you just need to click.
See https://stackoverflow.com/a/14065171 for how to do it
In the batch file you just need:
source activate py27_qt4
python comictagger.py
dickloraine is offline   Reply With Quote