how to update spyder on anaconda

后端 未结 12 599
深忆病人
深忆病人 2020-12-07 11:20

I have Anaconda installed (Python 2.7.11 |Anaconda custom (64-bit)| (default, Feb 16 2016, 09:58:36) [MSC v.1500 64 bit (AMD64)] on win32) and I am using Spyder 2.3.8

相关标签:
12条回答
  • 2020-12-07 12:13

    I see that you used pip to update. This is strongly discouraged (at least in Spyder 3). The Spyder update notices I receive have always included the following:

    "IMPORTANT NOTE: It seems that you are using Spyder with Anaconda/Minconda. Please don't use pip to update it as that will probably break your installation. Instead please wait until new conda packages are available and use conda to perform the update."

    0 讨论(0)
  • 2020-12-07 12:13

    It's very easy just in 2 click

    1. Open Anaconda Navigator
    2. Go to Spyder icon
    3. Click on settings logo top-right coner of spider box
    4. Click update application

    That it Happy coding

    0 讨论(0)
  • 2020-12-07 12:20

    Using pip directly:

    WARNING: This will break your Anaconda Installation as described by Spyder maintainer in the comments below; you can try this solution only if the solution mentioned above that use Conda do not work

    pip install --upgrade spyder

    You might get an error once launching the new Spyder "nbconvert >= 4.0: None (NOK)", which will require you to resinstall configparser:

    conda uninstall configparser

    conda install configparser

    You should now have a fresh and up to date installation of Spyder.

    0 讨论(0)
  • 2020-12-07 12:21

    Go to Anaconda Naviagator, find spyder,click settings in the top right corner of the spyder app.click update tab

    0 讨论(0)
  • 2020-12-07 12:21

    One way to avoid errors during installing or updating packages is to run the Anaconda prompt as Administrator. Hope it helps!

    0 讨论(0)
  • 2020-12-07 12:21

    This worked for me: conda install --force-reinstall pyqt qt
    Based on: https://github.com/spyder-ide/spyder/issues/5525

    0 讨论(0)
提交回复
热议问题