mm_
mm_

Reputation: 1735

spyder4 beta5 reports missing dependencies which are already installed

I installed spyder4 in ubuntu using pip install --pre -U spyder. When I run it I get a pop-up window which states:

You have missing dependencies!
xdg >=0.26: None (NOK)

I'm sure xdg-utils is installed. Does anyone knows how to solve this problem?

Thanks !

Upvotes: 0

Views: 341

Answers (1)

Carlos Cordoba
Carlos Cordoba

Reputation: 34156

(Spyder maintainer here) You need to run

pip install -U pyxdg

to fix this problem.

Upvotes: 2

Related Questions