简体   繁体   English

无法安装 conda spyder 包构建

[英]Unable to install conda spyder package build

I want to install a specific build of spyder on conda - version 3.3.0 with py36_a build.我想在 conda 上安装特定版本的 spyder - 版本 3.3.0,带有 py36_a 版本。

# Name                  Version           Build  Channel                             
spyder                    3.3.0          py27_0  pkgs/main           
spyder                    3.3.0          py36_0  pkgs/main           
spyder                    3.3.0          py37_0  pkgs/main           
spyder                    3.3.1          py27_1  pkgs/main           
spyder                    3.3.1          py35_1  pkgs/main           
spyder                    3.3.1          py36_1  pkgs/main           
spyder                    3.3.1          py37_1  pkgs/main 

But when I do, I get an error that the package has not been found.但是当我这样做时,我收到一个错误,说没有找到包。

$conda install spyder=3.3.0=py36_1
Solving environment: failed

PackagesNotFoundError: The following packages are not available from current channels:

  - spyder==3.3.0=py36_1

Current channels:

  - https://repo.anaconda.com/pkgs/main/linux-64
  - https://repo.anaconda.com/pkgs/main/noarch
  - https://repo.anaconda.com/pkgs/free/linux-64
  - https://repo.anaconda.com/pkgs/free/noarch
  - https://repo.anaconda.com/pkgs/r/linux-64
  - https://repo.anaconda.com/pkgs/r/noarch
  - https://repo.anaconda.com/pkgs/pro/linux-64
  - https://repo.anaconda.com/pkgs/pro/noarch

I also tried conda install -c pkgs/main spyder=3.3.0=py36_1 but it gave me the same error.我也试过conda install -c pkgs/main spyder=3.3.0=py36_1但它给了我同样的错误。 What's wrong here?这里有什么问题?

This is not really recommended, and updating one or more dependencies to a version not tested together in the anaconda meta package is the likely reason for this problem in the first place.这不是真正推荐的,并且将一个或多个依赖项更新到未在 anaconda 元包中一起测试的版本是导致此问题的首要原因。

However, the fact that updating,.. something...is requiring Spyder>=3.3.0 is worrisome, and seems to match what was reported on another thread.但是,更新……某些东西……需要 Spyder>=3.3.0 的事实令人担忧,并且似乎与另一个线程上报告的内容相符。 Could you please run你能跑吗

conda install spyder=3.3.0 

and post your full output here, We need to know what's causing this issue.并在此处发布您的完整输出,我们需要知道导致此问题的原因。

And also dont't try to doing conda update --all .并且也不要尝试执行conda update --all

Instead, you need to do below相反,你需要在下面做

conda remove spyder-kernels
conda install spyder-kernel==0.*
conda update spyder

My suggestion is simply to update the packages that you an update for:我的建议只是更新您要更新的软件包:

conda update spyder, conda update pandas , etc. conda update spyder, conda update pandas等。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM