Thanks Reinhard. I've not tested on full Anaconda and from your report that shows.
You're installing from the (base) environment, which means anything you do in it is not isolated from the other possible python environments and apparently Leo and Spyder (which Anaconda ships with) ask for incompatible versions of PyQt. Try this: conda create --name leo-dev activate leo-dev conda install pyqt5 pip install --editable D:\bin\leo-editor - We create a new empty environment. It has nothing, not even python. - Then we activate it. Anything from this point forward happens in (leo) and not (base). - Install PyQt5 using Conda. This will also install python and a host of other required libraries. - Now we install Leo using python's pip package manager, which will fetch all of it's dependencies. Let me know if this works. -matt -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/leo-editor/77417b44-8386-4fc6-a9cb-f4d28585f3aa%40googlegroups.com.
