Spyder doesnt recognize dependencies
See original GitHub issueDescription
What steps will reproduce the problem?
- Spyder was crashed when i was doing PYTHONPATH manager
- After crash i re-open Spyder using ANACONDA navigator
- But after re-open Spyder there was error message " You have missing dependencies!"
What is the expected output? What do you see instead? Just normal working Spyder without any error message
Please provide any additional information below
error message said there is no “nbconvert” module but “nbconvert” module is already installed and even i can import “nbconvert” module in Ipython error message pops up every time when i open Spyder i already tried reinstall/upgrade Spyder but same issue before crash Spyder works fine without any error message.
Version and main components
- Spyder Version: 3.2.5
- Python Version: 2.7.14
- Qt Versions: 4.8.6, PyQt4 (API v2) 4.10.4 on Windows
Dependencies
IPython >=4.0;<6.0: 5.4.1 (OK)
cython >=0.21 : None (NOK)
jedi >=0.9.0 : 0.10.2 (OK)
nbconvert >=4.0 : None (NOK)
numpy >=1.7 : 1.11.2 (OK)
pandas >=0.13.1 : None (NOK)
pycodestyle >=2.3 : 2.3.1 (OK)
pyflakes >=0.5.0 : 1.6.0 (OK)
pygments >=2.0 : 2.2.0 (OK)
pylint >=0.25 : 1.7.4 (OK)
qtconsole >=4.2.0 : 4.3.1 (OK)
rope >=0.9.4 : 0.10.5 (OK)
sphinx >=0.6.6 : 1.6.3 (OK)
sympy >=0.7.3 : None (NOK)
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
spyder is showing error after update [you have missing ...
While installing spyder, spyder need some dependencies to work and if they are missing then it will not work accordingly and in your...
Read more >Common Illnesses — Spyder 4 documentation
If the plugin with the problem is not listed in the dependencies dialog, check that you installed it in the same environment as...
Read more >Installation — GeoPandas 0.12.2+0.gefcb367.dirty ...
See the Dependencies section below for more details. ... GeoPandas will not yet automatically install PyGEOS as dependency, you need to do this...
Read more >Installation — Spyder 3 documentation
Install Spyder and its dependencies by running this command: ... this error: ValueError: unknown locale: UTF-8 , which doesn't let it start correctly....
Read more >Detailed instructions for installing dependencies
4 in case you want the classic console). The IPython console of spyder does unwanted integration of matplotlib images (can be switched off)...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I solved the same issue on Windows 10 with
conda install nbconvert=5.4.1
Thanks! I’m in Windows 10.
Python Interpreter
is "Default (i.e., the same as Spyder’s).running
import nbconvert
doesn’t return anything to the console, so I’m presuming that means it works just fine (no errors thrown).sys.executable
returns:'C:\\Users\\datanner\\AppData\\Local\\Continuum\\Anaconda3\\envs\\companalytics\\pythonw.exe'
I should say that this error started after I updated from python 3.6 to 3.7, and all of the dependencies updated.
And now running
conda update --all
gives the following warning:Then running conda update alternately either upgrades nbconvert and downgrades pandoc, or upgrades pandoc and downgrades nbconvert.
All new behavior today.