how to update spyder on anaconda(如何在 anaconda 上更新 spyder)
问题描述
我安装了 Anaconda(Python 2.7.11 |Anaconda 自定义(64 位)|(默认,2016 年 2 月 16 日,09:58:36)[MSC v.1500 64 位 (AMD64)] 在 win32 上)并且我我正在使用 Spyder 2.3.8
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
想将 Spyder 更新到最新版本,所以我通过了命令:
Would like to update Spyder to the latest version, so I went through the commands:
conda update conda
conda update anaconda
conda update spyder
它们都运行没有错误,但 spyder 版本没有改变 - 这是我用来启动的命令:
They all ran without errors, but the spyder version didn't change - this is command I'm using to launch:
C:Anaconda2pythonw.exe C:Anaconda2cwp.py C:Anaconda2 "C:/Anaconda2/pythonw.exe" "C:/Anaconda2/Scripts/spyder-script.py" --new-实例
C:Anaconda2pythonw.exe C:Anaconda2cwp.py C:Anaconda2 "C:/Anaconda2/pythonw.exe" "C:/Anaconda2/Scripts/spyder-script.py" --new-instance
我错过了什么吗?
推荐答案
扩展juanpa.arrivillaga'评论:
如果要在root环境下更新Spyder,那么conda update spyder
对我有用.
If you want to update Spyder in the root environment, then conda update spyder
works for me.
如果你想为你创建的虚拟环境更新 Spyder(例如,为不同版本的 Python),那么 conda update -n $ENV_NAME spyder
where $ENV_NAME
是您的环境名称.
If you want to update Spyder for a virtual environment you have created (e.g., for a different version of Python), then conda update -n $ENV_NAME spyder
where $ENV_NAME
is your environment name.
如果 conda update spyder
不起作用,this post 表明您可能需要在更新 spyder 之前运行 conda update anaconda
.另请注意,您可以根据需要指定确切的 spyder 版本.
In case conda update spyder
isn't working, this post indicates you might need to run conda update anaconda
before updating spyder. Also note that you can specify an exact spyder version if you want.
这篇关于如何在 anaconda 上更新 spyder的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 anaconda 上更新 spyder


基础教程推荐
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 包装空间模型 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 求两个直方图的卷积 2022-01-01