在windows10 64上安装python的ggplot

时间:2015-10-09 16:08:22

标签: python statsmodels python-ggplot

我正在使用python 2.7并安装了anaconda安装。

虽然我是新手用户,但一切正常。

然后我决定使用ggplot。 (用于python的包)

说明说 pip install -U ggplot

我遇到问题,它开始安装许多软件包,包括ggplot但是在statsmodels软件包中它会暂停,并给出以下消息:

c:\Python27\Scripts>pip install -U ggplot
Collecting ggplot
  Using cached ggplot-0.6.8.tar.gz
Requirement already up-to-date: six in c:\python27\lib\site-packages (from ggplot)
Collecting statsmodels (from ggplot)
  Using cached statsmodels-0.6.1.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 20, in <module>
      File "c:\users\appdata\local\temp\pip-build-8ce3lv\statsmodels\setup.py", line 393, in <module>
        install_requires) = check_dependency_versions(min_versions)
      File "c:\users\appdata\local\temp\pip-build-8ce3lv\statsmodels\setup.py", line 119, in check_dependency_versions
        if not (StrictVersion(strip_rc(npversion)) >= min_versions['numpy']):
      File "C:\Python27\lib\distutils\version.py", line 40, in __init__
        self.parse(vstring)
      File "C:\Python27\lib\distutils\version.py", line 107, in parse
        raise ValueError, "invalid version number '%s'" % vstring
    ValueError: invalid version number '1.10.0.post2'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in c:\users\appdata\local\temp\pip-build-8ce3lv\statsmodels

我在SO和gitHub上阅读了很多问题,但没有什么是明确的,只是它是版本问题

我尝试升级软件包,但是我失败了。

感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

使用conda install statsmodels。适用于Windows 10 64bit

答案 1 :(得分:1)

根据对numpy邮件列表和numpy问题跟踪器的讨论,

numpy 1.10将很快在版本号中没有post的情况下可用。

statsmodels的版本扫描无法处理post部分,因为过去从未使用任何科学或数据分析相关包。

现在唯一的解决方案是编辑statsmodels的setup.py,或者切换到没有post版本号的numpy版本,或者编辑numpy中的版本号。

https://github.com/statsmodels/statsmodels/issues/2645 https://github.com/numpy/numpy/issues/6431