博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
scipy.optimize ImportError: cannot import name '_zeta'
阅读量:6814 次
发布时间:2019-06-26

本文共 1301 字,大约阅读时间需要 4 分钟。

最近开发同事让我装几个包,scipy、gensim、theano、sklearn.....几个包装完后,发现导入报错,具体如下:

from ._ufuncs import (ellipkm1, mathieu_a, mathieu_b, iv, jv, gamma,
ImportError: cannot import name '_zeta'

通过某度搜了好久愣是没发现解决办法,后来直接出去,用Google搜索,直接提示scipy版本问题,更新即可,

Sounds like you have an old version of special._ufuncs--the function zeta in there was renamed to_zeta somewhat recently. What happens if you completely uninstall SciPy and then reinstall a fresh version? (Also, what version of SciPy are you using?)

这里真的不得不吐槽一把....

[root@localhost~]# pip uninstall scipy

[root@localhost~]# pip install -U scipy

后面的安装过程大概需要10分钟左右,最终结果为:

  Could not find .egg-info directory in install record for scipy from https://pypi.python.org/packages/22/41/b1538a75309ae4913cdbbdc8d1cc54cae6d37981d2759532c1aa37a41121/scipy-0.18.1.tar.gz#md5=5fb5fb7ccb113ab3a039702b6c2f3327 in /usr/local/lib/python2.7/site-packages

Successfully installed scipy

Cleaning up...

[root@localhost~]# python

Python 2.7.10 (default, Dec 22 2016, 14:45:25) 

[GCC 4.8.2] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> import scipy

>>> import gensim

>>> import theano

>>> import sklearn

>>> exit

Use exit() or Ctrl-D (i.e. EOF) to exit

>>> exit()

[root@localhost ~]#

      本文转自027ryan  51CTO博客,原文链接:http://blog.51cto.com/ucode/1893119,如需转载请自行联系原作者

你可能感兴趣的文章
最小公约数(欧几里得算法&&stein算法)
查看>>
golang iris 富文本的显示问题
查看>>
[Java 8] (5) 使用Lambda表达式进行设计
查看>>
jQuery之合成事件
查看>>
记录安装oracle的那些事(五)之 还没解决的错误
查看>>
JScript中的prototype(原型)属性研究(1)
查看>>
Winform开发框架之插件化应用框架实现
查看>>
Nodejs·理解Buffer
查看>>
C#实现一颗树!
查看>>
I.MX6 bq27441 driver porting
查看>>
3.3. atop - AT Computing's System & Process Monitor
查看>>
【设计模式】—— 单例模式Singleton
查看>>
WPF界面设计技巧(9)—使用UI自动化布局
查看>>
FastJson--阿里开源的速度最快的Json和对象转换工具
查看>>
在SpringMVC中获取request对象的几种方式
查看>>
RGB颜色对照表
查看>>
那些有坏味道的代码
查看>>
第 32 章 Sphinx
查看>>
Linq下的distinct()比SQLServer下的distinct更强大,更自由,呵呵
查看>>
linux虚拟机与winodows共享文件夹----linux安装VMware tools
查看>>