Paweł Wójcik
Paweł Wójcik

Reputation: 192

Missing Spyder dependecies qtconsole

After the latest Spyder update using

conda update conda

I have started getting an error message in a small window that pops up and says

You have missing dependencies!


# Mandatory:
qtconsole >=5.0.1 : 4.7.7 (NOK)

Please install them to avoid this message.

Note: Spyder could work without some of these dependencies, however to have a smooth experience when using Spyder we strongly recommend you to install all the listed missing dependencies.

Failing to install these dependencies might result in bugs. Please be sure that any found bugs are not the direct result of missing dependencies, prior to reporting a new issue.

What is annoying is that any attempt to update qtconsole doesn't change anything

pawel@laptop:~$ ./.local/opt/anaconda3/bin/conda update conda
Collecting package metadata (current_repodata.json): done
Solving environment: done

# All requested packages already installed.

pawel@laptop:~$ ./.local/opt/anaconda3/bin/conda update qtconsole
Collecting package metadata (current_repodata.json): done
Solving environment: done

# All requested packages already installed.

I would greatly appreciate it if someone could help me out

Upvotes: 1

Views: 1536

Answers (1)

chunli zhang
chunli zhang

Reputation: 11

Try:

conda update anaconda
conda install qtconsole=5

Upvotes: 1

Related Questions