无法在 python 3.5 中导入 ggplot

Not able to import ggplot in python 3.5

我安装了 Ubuntu Gnome 16.04 python 2.7 和 python 3.5。 我已经在 python 3.5 中安装了 ggplot 但无法导入它。

我得到 ImportError: No module named 'StringIO'.

我错过了什么吗?据我所知,StringIO 模块已合并到 python 3.5.

io 模块中

发现问题,python3 的一些文件没有完全转换。

打开文件 /usr/local/lib/python3.5/dist-packages/ggplot/ggplot.py 并更改

import StringIO

至此

from io import StringIO

我现在没有收到任何错误,但可能有一些其他文件需要将 python2 代码转换为在 python3 中工作。