本文介绍了已安装模块ggplot,但无法导入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我通过命令行使用 conda 在Win64环境中为python 2.7安装了 ggplot :

I installed ggplot for python 2.7 in a Win64 env using conda via the command line:

$conda install -c https://conda.binstar.org/bokeh ggplot

因为:

$pip install -U ggplot

无法找到该软件包(请参见先前的 stackQ ).

could not locate the package (see pevious stackQ).

检查是否已安装模块:

 >python -c "import ggplot"
 Traceback (most recent call last):
 File "<string>", line 1, in <module>
 ImportError: No module named ggplot

有什么办法解决这个问题吗?

Any idea how to resolve this?

更新说明:调试测试

 $pip freeze
 >(finds package ggplot)
 $import imp
 $imp.find_module("ggplot")
 >'C:\\Users\\Remi\\Anaconda2\\envs\\envx\\lib\\site-packages\\ggplot'

推荐答案

我正在发布到达的分辨率.尽管它可能使可能遇到类似问题的其他人受益,但它不是线性的.

I am posting the resolution I arrived to. It is not linear, although it may benefit others who may encounter a similar issue.

第一步:激活 ggplot 模块所在的环境 envx .

First step: activated the environment envx where the ggplot module was said to reside in.

再次导入模块:

$python -c "import ggplot"

引发投诉,结尾为:

ImportError: DLL load failed: The specified module could not be found.

请求从 scipy ggplot 模块导入的失败.

among failures in requesting imports from scipy and ggplot modules.

第二步:重新安装 scipy

$conda install scipy

在这里,conda必须对 python numpy ...等进行直观"更新.在最初的 ggplot 安装过程中, conda 降级了.

Here conda has to do some 'intuitive' updates of python, numpy ... ect. During the initial ggplot install, conda went the downgrade route.

就是这样.

这篇关于已安装模块ggplot,但无法导入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 15:59