我在Ubuntu 16.04 LTS上有Anaconda 4.3.23。当我尝试使用
安装pydot-ng软件包时conda install pydot-ng
我收到以下错误:
UnsatisfiableError: The following specifications were found to be in conflict:
- pydot-ng -> python 2.7* -> openssl 1.0.1*
- python 3.6*
Use "conda info <package>" to see the dependencies for each package.
运行conda info pydot-ng
后,我看到了
pydot-ng 1.0.0.15 py27_0
------------------------
file name : pydot-ng-1.0.0.15-py27_0.tar.bz2
name : pydot-ng
version : 1.0.0.15
build string: py27_0
build number: 0
channel : defaults
size : 45 KB
arch : x86_64
date : 2015-09-09
license : MIT
md5 : 8b81a344723e64ec3545b5f030caca47
noarch : None
platform : linux
url : https://repo.continuum.io/pkgs/free/linux-64/pydot-ng-
1.0.0.15-py27_0.tar.bz2
dependencies:
pyparsing
python 2.7*
pydot-ng 1.0.0.15 py34_0
------------------------
file name : pydot-ng-1.0.0.15-py34_0.tar.bz2
name : pydot-ng
version : 1.0.0.15
build string: py34_0
build number: 0
channel : defaults
size : 46 KB
arch : x86_64
date : 2015-09-09
license : MIT
md5 : 13e3a10b45edfb38d91a51d6b3ccabc7
noarch : None
platform : linux
url : https://repo.continuum.io/pkgs/free/linux-64/pydot-ng-
1.0.0.15-py34_0.tar.bz2
dependencies:
pyparsing
python 3.4*
有什么问题?难道不能安装能与python 3.6兼容的pydot-ng 1.0.0.15 py34_0
版本(我推测)?
答案 0 :(得分:3)
这不是conda的工作方式 - 该软件包是为特定版本的Python构建的,除非软件包构建器明确指出它是一个通用软件包,并且可以安装许多版本。最简单的解决方案是创建一个新环境来安装此软件包:
conda create -n pydotng python=3.4 pydot-ng