Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ssis/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 无法使用conda forge安装ggplot_Python_Anaconda_Conda_Conda Forge - Fatal编程技术网

Python 无法使用conda forge安装ggplot

Python 无法使用conda forge安装ggplot,python,anaconda,conda,conda-forge,Python,Anaconda,Conda,Conda Forge,我正试图用conda forge安装ggplot。但它显示出一定的错误。下面给出了错误消息的详细信息 (base) C:\Users\ASUS>conda install -c conda-forge ggplot=0.11.5 请帮助我解决任何问题。yhat的ggplot python端口的开发。似乎它只与pandas兼容,我找到了ggplot的替代品,它包含了所有ggplot功能。这是九号图。 安装plotnine的步骤 # Using pip $ pip install plotn

我正试图用conda forge安装ggplot。但它显示出一定的错误。下面给出了错误消息的详细信息

(base) C:\Users\ASUS>conda install -c conda-forge ggplot=0.11.5

请帮助我解决任何问题。

yhat的ggplot python端口的开发。似乎它只与
pandas兼容,我找到了
ggplot
的替代品,它包含了所有
ggplot
功能。这是九号图
。 安装plotnine的步骤

# Using pip
$ pip install plotnine         # 1. should be sufficient for most
$ pip install 'plotnine[all]'  # 2. includes extra/optional packages

# Or using conda
$ conda install -c conda-forge plotnine

有关使用指南,请访问

您不应该使用基础环境进行开发。为每个项目/应用程序创建一个新的、独立的环境。
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:

Specifications:

  - ggplot=0.11.5 -> python[version='2.7.*|3.5.*|3.6.*|3.4.*']

Your python: python=3.7

If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.

The following specifications were found to be incompatible with your CUDA driver:

  - feature:/win-64::__cuda==11.0=0
  - feature:|@/win-64::__cuda==11.0=0

Your installed CUDA driver is: 11.0
# Using pip
$ pip install plotnine         # 1. should be sufficient for most
$ pip install 'plotnine[all]'  # 2. includes extra/optional packages

# Or using conda
$ conda install -c conda-forge plotnine