Sujit
Sujit

Reputation: 119

spyder is showing error after update [you have missing dependencies]

spyder ide is showing error after new 4.0.0b1 update. Please help.

Refer this image

Upvotes: 12

Views: 20796

Answers (3)

MZulkifalZK
MZulkifalZK

Reputation: 1

While installing spyder, spyder need some dependencies to work and if they are missing then it will not work accordingly and in your case during installation few dependencies must have been missed.

Open command prompt activate the environment you are working in if any and then run the following command it will you update the packages and will work fine

conda update jedi parso

Upvotes: 0

nba2020
nba2020

Reputation: 688

For me

conda update jedi parso

didn't fix the issue but I managed to resolve it by running with Admin rights the following commands sequentially in the Anaconda Prompt:

pip uninstall jedi
pip uninstall parso
pip install parso==0.5.2
pip install jedi==0.15.2

Upvotes: 3

Carlos Cordoba
Carlos Cordoba

Reputation: 34156

(Spyder maintainer here) To fix this error, please open an Anaconda Prompt and run there

conda update jedi parso

Upvotes: 10

Related Questions