GoogleCodeArchives / editra

Automatically exported from code.google.com/p/editra
Other
0 stars 0 forks source link

Ubuntu 9.10 64-bit: latest Editra versions have AUI issue #475

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Update to latest Editra in svn (I used revision 63374)
2. Try to run Editra, it will fail

What is the expected output? What do you see instead?

Traceback (most recent call last):
  File "/usr/local/bin/Editra", line 79, in <module>
    main()
  File "/usr/local/bin/Editra", line 74, in main
    import Editra
  File "/usr/local/lib/python2.6/dist-packages/Editra/src/Editra.py", line
62, in <module>
    import ed_main
  File "/usr/local/lib/python2.6/dist-packages/Editra/src/ed_main.py", line
34, in <module>
    import ed_mpane
  File "/usr/local/lib/python2.6/dist-packages/Editra/src/ed_mpane.py",
line 27, in <module>
    import ed_pages
  File "/usr/local/lib/python2.6/dist-packages/Editra/src/ed_pages.py",
line 39, in <module>
    from extern import aui
ImportError: cannot import name aui

IMPORTANT!!! Please answer these questions for any and ALL bug reports

What version of the product are you using? On what operating system?
Editra revision 63374
Ubuntu 9.10 (karmic) 64-bit
Linux 2.6.31-17-generic #54-Ubuntu SMP Thu Dec 10 17:01:44 UTC 2009 x86_64
GNU/Linux

What method of install was your version installed with (Binary/Source)?
Source from svn

If from source: What version of python and wxPython are you using?

Python 2.6.4 (r264:75706, Dec  7 2009, 18:43:55) 
[GCC 4.4.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import wx
>>> wx.version()
2.8.10.1 (gtk2-unicode)

Please provide any additional information below.
This may be a Ubuntu/Debian specific issue, not sure. Has anyone else had
AUI errors?

Original issue reported on code.google.com by joseph.d...@gmail.com on 3 Feb 2010 at 5:26

GoogleCodeExporter commented 9 years ago
Forgot to mention: I can revert to version 63359 and it works fine. I used that
version number based on the comments in the svn log; it looks like the AUI 
changes
were made after that version.

Original comment by joseph.d...@gmail.com on 3 Feb 2010 at 5:28

GoogleCodeExporter commented 9 years ago
Those were just checked in last night. I am guessing you may have had an old 
MANIFEST
file in your checkout directory that didn't get regenerated when you ran 
setup.py
install.

Try to update again, then delete the MANIFEST file before running setup.py 
install.

If that still doesn't work make sure that all the file were actually downloaded 
when
you did a checkout. There should be a src/extern/aui directory. This is what 
your
error is complaining about not being there. Also check the install location to 
make
sure it got copied there.

Thanks,

Cody

Original comment by CodyPrec...@gmail.com on 3 Feb 2010 at 6:29

GoogleCodeExporter commented 9 years ago
Checked in some other changes to the setup script that should probably fix this 
issue
please verify if you can.

Thanks,

Cody

Original comment by CodyPrec...@gmail.com on 3 Feb 2010 at 7:43

GoogleCodeExporter commented 9 years ago
Yes, that fixed it -- thanks!!

Original comment by joseph.d...@gmail.com on 3 Feb 2010 at 7:51