You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that this "breaks" the silxs installation within that environment. Particularly, I have separated environment just for running crispy 0.7.3.
Edit line 58 of plot.py in the crispy folder (<crispy_folder>/crispy/gui/plot.py)
Before it was
x, y, legend, *args, **kwargs)
and I changed it to
x, y, *args, **kwargs)
You may close this. I just thought it would be a good idea to report this error here since other people might also have the same issue when using crispy on ubuntu.
The text was updated successfully, but these errors were encountered:
Thanks a lot for reporting this. The plotting API changed in the more recent silx versions. Another way to solve the issue is to install an older version of silx.
python3-mpipinstallsilx==0.11
The issue here is that older versions of silx don't provide wheels, so pip will compile the library from the source, which might not be too much of a problem on Linux.
I'll update the README.rst to reflect this. Hopefully, I will finish the new release soon.
I have tried to use crispy 0.7.3 on Ubuntu 20.04, but got the following error when plotting spectra:
Then I used the following workaround:
curve.py
in the silx package (the full file path can be found in error message above).Before it was
and I changed it to
Note that this "breaks" the silxs installation within that environment. Particularly, I have separated environment just for running crispy 0.7.3.
plot.py
in the crispy folder (<crispy_folder>/crispy/gui/plot.py
)Before it was
and I changed it to
You may close this. I just thought it would be a good idea to report this error here since other people might also have the same issue when using crispy on ubuntu.
The text was updated successfully, but these errors were encountered: