btel / SpikeSort

Spike sorting library implemented in Python/NumPy/PyTables
http://spike-sort.readthedocs.org
Other
27 stars 12 forks source link

nxutils #96

Closed spiaz closed 11 years ago

spiaz commented 11 years ago

Hi, I am trying to use SpikeSort and always end up with an error related to nxutils, which apparently have been deprecated. I have tried with different OS and branches. Here the output from Windows

C:\Canopy\User\lib\site-packages\spikesort-0.1-py2.7.egg\spike_sort\ui\manual_sort.py in () 1 from matplotlib.widgets import Lasso ----> 2 from matplotlib.nxutils import points_inside_poly 3 from matplotlib.colors import colorConverter 4 from matplotlib.collections import RegularPolyCollection, LineCollection 5

ImportError: No module named nxutils

belevtsoff commented 11 years ago

Hi @spiaz , this problem has been fixed in the current development branch (see issue #74 ), which unfortunately hasn't yet seen its release. To use the dev version, you should clone the "dev" branch of this repo instead of "master", e.g.:

git clone git@github.com:btel/SpikeSort.git -b dev
spiaz commented 11 years ago

ok thanks!