Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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

Refer this image

like image 936
Sujit Avatar asked Sep 03 '18 07:09

Sujit


2 Answers

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

conda update jedi parso

like image 188
Carlos Cordoba Avatar answered Oct 04 '22 14:10

Carlos Cordoba


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
like image 40
nba2020 Avatar answered Oct 04 '22 16:10

nba2020