Problems faced in Python Spyder
- Spyder faced problem of failure to start Kernel:
This was solved by using the following command :
conda install -c anaconda python
After this command spyder was started from the Anaconda terminal using command:
spyder
Now the problem was finally resolved using resetting Spyder to defaults using:
tools -> Reset Spyder to factory defaults - There was a problem that was accompanied using the above method, which is the installation of the latest version of PyQt5 which overrides PyQt4. Hence to force the downgrade to PyQt4 the following command was used:
Ref :https://github.com/jnicoleoliveira/SPECData/issues/6
conda install --channel https://conda.anaconda.org/conda-forge pyqt
conda install -c anaconda pyqt=4.11.4
No comments:
Post a Comment