umvarma / pynastran

Automatically exported from code.google.com/p/pynastran
1 stars 0 forks source link

ImportError: No module named weave #173

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
AFAIK weave is no longer part of scipy.

nils@linux-5jkt:~/svn/pynastran-read-only> pyNastranGUI
Using PyQt4
Traceback (most recent call last):
  File "/home/nils/local/bin/pyNastranGUI", line 9, in <module>
    load_entry_point('pyNastran==0.7.0-dev', 'console_scripts', 'pyNastranGUI')()
  File "/home/nils/local/lib64/python2.7/site-packages/distribute-0.6.45-py2.7.egg/pkg_resources.py", line 343, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
  File "/home/nils/local/lib64/python2.7/site-packages/distribute-0.6.45-py2.7.egg/pkg_resources.py", line 2354, in load_entry_point
    return ep.load()
  File "/home/nils/local/lib64/python2.7/site-packages/distribute-0.6.45-py2.7.egg/pkg_resources.py", line 2060, in load
    entry = __import__(self.module_name, globals(),globals(), ['__name__'])
  File "/home/nils/svn/pynastran-read-only/pyNastran/gui/gui.py", line 41, in <module>
    from pyNastran.gui.formats import (NastranIO, Cart3dIO, PanairIO, LaWGS_IO,
  File "/home/nils/svn/pynastran-read-only/pyNastran/gui/formats.py", line 12, in <module>
    from pyNastran.converters.nastran.nastranIO import NastranIO
  File "/home/nils/svn/pynastran-read-only/pyNastran/converters/nastran/nastranIO.py", line 31, in <module>
    from pyNastran.bdf.bdf import (BDF, CAERO1, CAERO2, CAERO3, CAERO4, CAERO5,
  File "/home/nils/svn/pynastran-read-only/pyNastran/bdf/bdf.py", line 35, in <module>
    from pyNastran.bdf.cards.elements.solid import (CTETRA4, CTETRA10, CPENTA6, CPENTA15,
  File "/home/nils/svn/pynastran-read-only/pyNastran/bdf/cards/elements/solid.py", line 21, in <module>
    from pyNastran.utils.mathematics import Area, gauss
  File "/home/nils/svn/pynastran-read-only/pyNastran/utils/mathematics.py", line 30, in <module>
    import scipy.weave
ImportError: No module named weave

Original issue reported on code.google.com by nils...@googlemail.com on 9 Feb 2015 at 7:36

GoogleCodeExporter commented 9 years ago
scipy.weave bug has been fixed (I think in 0.13), removing weave import

Original comment by mesheb82 on 9 Feb 2015 at 9:22