The install log should show that gcc or whatever compiler is called,
and builds the `xxx.pyd` files
>
> For example, I see this:
>
> % pwd
> /home/ubuntu/statsmodels/statsmodels/nonparametric
>
> % ls
> api.py bandwidths.py __init__.py kde.py kdetools.py
> _kernel_base.py kernel_regression.py linbin.c _smoothers_lowess.c
> smoothers_lowess.py _smoothers_lowess.pyx
> api.pyc bandwidths.pyc __init__.pyc kde.pyc kdetools.pyc
> kernel_density.py kernels.py linbin.pyx smoothers_lowess_old.py
> smoothers_lowess.pyc tests
_smoothers_lowess.pyd is missing, so the extension didn't get build
the .c file is there so it looks like it called cython to create them
>
>>
>> How does the install on an EC2 machine work? I have no idea.
>
>
> It's just like a regular headless ubuntu. You can "apt-get install cython"
> to get 0.15.1 installed or "pip install cython" to get 0.19. I tried with
> both of those installed and go the same results each times.
How did you install statsmodels?
pip install statsmodels
should build the extensions, I think
or, if there is a install problem then it should abort.
To me it looks like you are running statsmodels from the source, not
an installed version.
Josef
>
>>
>> Josef
>
>