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

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • process

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

    trying to install PyKF-0.1 (Kalman Filters)




    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="f onnesbeck@mac.c om",
    description="Ve rsion %s of PyKF" % version,
    license="GNU GPL",
    name="PyKF",
    url="pykf.sourc eforge.net",
    packages=["PyKF"],
    )
  • Robert Kern

    #2
    Re: Trying to install module, No module named scipy_distutils .core(but i have scipy)

    process wrote:
    trying to install PyKF-0.1 (Kalman Filters)

    >
    >
    >
    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.



    --
    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

    Comment

    Working...