安装的模块ggplot但无法导入(Module ggplot installed but canno

2019-09-26 07:00发布

我安装ggplot使用蟒2.7在Win64的ENV conda通过命令行:

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

以来:

$pip install -U ggplot

无法找到包(见pevious stackQ )。

检查是否已安装模块:

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

不知道如何解决这个问题?

更新说明 :调试测试

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

Answer 1:

我张贴我赶到的分辨率。 它不是线性的,尽管它可能会受益其他人谁可能会遇到类似的问题。

第一步:启动环境envx其中ggplot模块据说方式支付。

再次导入模块:

$python -c "import ggplot"

抛出结尾投诉:

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

在请求来自于进口的失败中scipyggplot模块。

第二步:重新安装scipy

$conda install scipy

这里有畅达做一些直观的“更新pythonnumpy ...等。 在最初的ggplot安装, conda走到降级的路线。

而已。



文章来源: Module ggplot installed but cannot be imported