--
You received this message because you are subscribed to the Google Groups "Hooke" group.
To post to this group, send email to hookes...@googlegroups.com.
To unsubscribe from this group, send email to hookesoftwar...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/hookesoftware?hl=en.
If you don't have SVN, you can also download tarballs/zips/etc. from
my Mercurial repository. The tip of the illysam branch is
http://www.physics.drexel.edu/~wking/code/hg/hgwebdir.cgi/hooke/rev/73fc951770f5
Tarballs etc. are linked in the bar on the left.
I'd like to post my mercurial repository to the Google Code page at
some point. I haven't pushed my work back to the SVN server yet,
since Mercurial<->Subversion is awkward (i.e. no round trips unless
you keep rebasing the Mercurial repo, which kind of defeats the
purpose).
I haven't had much time in the past month, but I hope to get my merged
version of the GUI and command line up and running soon
http://www.physics.drexel.edu/~wking/code/hg/hgwebdir.cgi/hooke/shortlog/tip
--
This email may be signed or encrypted with GPG (http://www.gnupg.org).
The GPG signature (if present) will be attached as 'signature.asc'.
For more information, see http://en.wikipedia.org/wiki/Pretty_Good_Privacy
My public key is at http://www.physics.drexel.edu/~wking/pubkey.txt
This doesn't look like a Hooke problem. What happens if you try to
import scipy stats without Hooke:
python -c 'import scipy.stats'
You can check your scipy installation by running its test suite
python -c 'import scipy; scipy.test()'
> scipy 0.7.1
> and i have tried numpy 1.3.0, 1.4.1 and 1.5.1 as 1.4.0 was pulled.
From its INSTALL.txt, scipy 0.7.1 only reqires numpy >= 1.2.0, so all
of those numpy versions should be OK, but perhaps changes in numpy
are breaking compatibility. You could try upgrading scipy
http://sourceforge.net/projects/scipy/files/
or downgrading numpy
http://sourceforge.net/projects/numpy/files/
to see if that helps. For one-stop shopping, the Enthought Python
Distribution 6.2
http://www.enthought.com/products/epdlibraries.php
matches scipy 0.8.0.dev6485 with numpy 1.4.0.
C:\hooke>python hooke.py
Traceback (most recent call last):
File "hooke.py", line 1394, in <module>
app = Hooke(redirect=redirect)
File "C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_core.py", line 7978
, in __init__
self._BootstrapApp()
File "C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_core.py", line 7552
, in _BootstrapApp
return _core_.PyApp__BootstrapApp(*args, **kwargs)
File "hooke.py", line 153, in OnInit
frame = make_command_class(*plugin_objects)(parent=None, id=wx.ID_ANY, title
='Hooke', pos=window_position, size=window_size)
File "hooke.py", line 304, in __init__
self.CreateMenuBar()
File "hooke.py", line 585, in CreateMenuBar
self.UpdatePerspectivesMenu()
File "hooke.py", line 1263, in UpdatePerspectivesMenu
self._SavePerspectiveToFile('Default', perspective)
File "hooke.py", line 419, in _SavePerspectiveToFile
perspectivesFile = open(filename, 'w')
IOError: [Errno 2] No such file or directory: 'C:\\hooke\\perspectives\\Default
.txt'
Many thanks
That does indeed look like a Hooke error. Hooke is trying to save the
default perspective, but the directory it wants to save into doesn't
exist. Actually, it's something a Mercurial-vs-SVN issue, since
Mercurial doesn't track the empty directory that exists in the SVN
repo:
http://code.google.com/p/hooke/source/browse/#svn/branches/illysam/perspectives
As a quick hack to get that version of Hooke working, you should just
create the missing directory by hand
$ mkdir C:\hooke\perspectives
The ideal workaround would be to automatically create the directory if
it is missing (patch attached), but I don't really see the point of
committing a fix to the illysam branch because
1) the fix no longer applies to my wtk branch
http://www.physics.drexel.edu/~wking/code/hg/hgwebdir.cgi/hooke/rev/914891a4c898#l1.103
2) Applying the fix in my Mercurial repository will make it difficult
for me to track future changes in the SVN version of the illysam
branch.
Of course, if people feel like SVN development of the illysam branch
is dead (bumps Massimo on SVN->Mercurial transition ;), point 2
doesn't apply, and I'll commit the fix.
As an alternative on the user side, you could switch to my wtk branch
instead of the illysam branch ;). amantedpaz has been helping me work
out a few Windows and Mercurial issues
http://code.google.com/p/hooke/issues/detail?id=40
but development is still proceeding rapidly, so it's not as stable as
illysam.
Cheers,
Trevor
Oops, here's the patch.