Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #75106 > unrolled thread

How to install data analysis pandas toolkit?

Started byfl <rxjwg98@gmail.com>
First post2014-07-23 17:30 -0700
Last post2014-07-23 21:12 -0700
Articles 3 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  How to install data analysis pandas toolkit? fl <rxjwg98@gmail.com> - 2014-07-23 17:30 -0700
    Re: How to install data analysis pandas toolkit? fl <rxjwg98@gmail.com> - 2014-07-23 17:53 -0700
    Re: How to install data analysis pandas toolkit? Miki Tebeka <miki.tebeka@gmail.com> - 2014-07-23 21:12 -0700

#75106 — How to install data analysis pandas toolkit?

Fromfl <rxjwg98@gmail.com>
Date2014-07-23 17:30 -0700
SubjectHow to install data analysis pandas toolkit?
Message-ID<aafbfac0-e871-4050-ab87-8396959544b8@googlegroups.com>
Hi,

I download data analysis pandas toolkit (Windows 32 version) to my PC:


pandas-0.14.0.win32-py2.7.exe


After I run it, I still cannot import the module:


>>> import pandas as pd
No module named numpy
Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
  File "C:\Python27\lib\site-packages\pandas\__init__.py", line 6, in <module>
    from . import hashtable, tslib, lib
  File "numpy.pxd", line 157, in init pandas.tslib (pandas\tslib.c:60843)
ImportError: No module named numpy
>>> 



I have check the pdf manual on installation, but do not find anything on Windows
version binary installation procedures. Could you tell me how I can get through
it?


Thanks,


http://pandas.pydata.org/pandas-docs/stable/install.html#all-platforms

[toc] | [next] | [standalone]


#75107

Fromfl <rxjwg98@gmail.com>
Date2014-07-23 17:53 -0700
Message-ID<d2a1818d-2477-474c-9f2c-22653d991ab7@googlegroups.com>
In reply to#75106
On Wednesday, July 23, 2014 8:30:00 PM UTC-4, fl wrote:

I have figured it out. It is installed under Cygwin. Although there are some 
errors in the process, it works now. Thanks,

[toc] | [prev] | [next] | [standalone]


#75120

FromMiki Tebeka <miki.tebeka@gmail.com>
Date2014-07-23 21:12 -0700
Message-ID<803c6eaa-9a03-4c46-8bb4-a6fe89028498@googlegroups.com>
In reply to#75106
Greetings,

> >>> import pandas as pd
> 
> No module named numpy
I find the most painless way of installing the Python scientific stack is using Anaconda
http://continuum.io/downloads

HTH,
--
Miki

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web