我通过命令行在ggplot
Win64 环境中安装了 python 2.7:conda
$conda install -c https://conda.binstar.org/bokeh ggplot
自从:
$pip install -U ggplot
找不到包(请参阅以前的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'