Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Trying to install module, No module named scipy_distutils.core (but ihave scipy)

Reply
Thread Tools

Trying to install module, No module named scipy_distutils.core (but ihave scipy)

 
 
process
Guest
Posts: n/a
 
      10-17-2008
trying to install PyKF-0.1 (Kalman Filters)
http://pykf.sourceforge.net/



I have Numpy, Scipy, Matplotlib installed an have successfully
installed other packages using them.


$ setup.py
Traceback (most recent call last):
File "./setup.py", line 2, in <module>
from scipy_distutils.core import setup
ImportError: No module named scipy_distutils.core


#!/usr/bin/env python
from scipy_distutils.core import setup

version = "0.1"

setup(
version=version,
author="Chris Fonnesbeck",
author_email="",
description="Version %s of PyKF" % version,
license="GNU GPL",
name="PyKF",
url="pykf.sourceforge.net",
packages=["PyKF"],
)
 
Reply With Quote
 
 
 
 
Robert Kern
Guest
Posts: n/a
 
      10-17-2008
process wrote:
> trying to install PyKF-0.1 (Kalman Filters)
> http://pykf.sourceforge.net/
>
>
>
> I have Numpy, Scipy, Matplotlib installed an have successfully
> installed other packages using them.
>
>
> $ setup.py
> Traceback (most recent call last):
> File "./setup.py", line 2, in <module>
> from scipy_distutils.core import setup
> ImportError: No module named scipy_distutils.core
>
>
> #!/usr/bin/env python
> from scipy_distutils.core import setup


scipy_distutils was from a very old version of scipy that used Numeric, not
numpy. PyKF will have to be upgraded to use numpy. I suggest asking the author
about it. If you are willing to take on the task of upgrading it to numpy, come
join us on numpy-discussion, and we'll help you out.

http://www.scipy.org/Mailing_Lists

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cisco 1800: How can I tell how much Bandwidth I am using vs. what Ihave? Brad Cisco 2 04-02-2009 09:44 PM
i have no trouble to send , ihave trouble reciving mail --any ideas John Penney Computer Support 4 08-29-2006 08:45 PM
Trying to install module with CPAN simon Perl 0 12-04-2004 11:19 AM
Using JYTHON inside ANT : access os module -> "ImportError: no module named javaos" eric_bellard Python 1 10-07-2004 05:41 AM
Scot Garner: Post your e-mail address about a copy of "Ed Wood" Ihave for sale Film Buff DVD Video 0 02-09-2004 01:10 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57