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
If I try and start loom-viewer, I get a ModueNotFoundError. Here's an example
$ loom --help
/usr/local/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
from ._conv import register_converters as _register_converters
Traceback (most recent call last):
File "/usr/local/bin/loom", line 7, in<module>
from loom_viewer import main
File "/usr/local/lib/python3.6/site-packages/loom_viewer/__init__.py", line 7, in<module>
from .loom_cli import main
File "/usr/local/lib/python3.6/site-packages/loom_viewer/loom_cli.py", line 41, in<module>
from .loom_server import start_server
File "/usr/local/lib/python3.6/site-packages/loom_viewer/loom_server.py", line 28, in<module>
import gevent.wsgi
ModuleNotFoundError: No module named 'gevent.wsgi'
I'm using Python v3.6.5, loom-viewer v0.32.2, gevent v1.3.1, and loompy v2.0.9. I think the gevent.wsgi module is just named gevent.pywsgi now (relevant commit from gevent).
The text was updated successfully, but these errors were encountered:
If I try and start loom-viewer, I get a
ModueNotFoundError
. Here's an exampleI'm using
Python v3.6.5
,loom-viewer v0.32.2
,gevent v1.3.1
, andloompy v2.0.9
. I think thegevent.wsgi
module is just namedgevent.pywsgi
now (relevant commit from gevent).The text was updated successfully, but these errors were encountered: