python – numpy.random没有属性’choice’
作者:互联网
我使用python 2.7.2 | EPD 7.1-1(64位),由于某种原因numpy.random.choice无法正常工作:
从终端窗口:
d-108-179-168-72:~ home$python
Enthought Python Distribution -- www.enthought.com
Version: 7.1-1 (64-bit)
Python 2.7.2 |EPD 7.1-1 (64-bit)| (default, Jul 3 2011, 15:56:02)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "packages", "demo" or "enthought" for more information.
>>> import numpy as np
>>> np.random.choice(5, 3)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'choice'
对问题可能是什么的任何想法?
谢谢
解决方法:
我认为它可能是您的发行版使用的numpy版本.从the documentation开始,选择仅在1.7.0中添加,从the enthought package开始,我可以看到它在版本7.2中只有1.6.1,比您自己的版本晚.您可能希望升级您的numpy版本.
标签:python,numpy,enthought 来源: https://codeday.me/bug/20190609/1203895.html