pyranges / pyranges_1.x

PyRanges as a DataFrame subclass.
MIT License
9 stars 2 forks source link

Minimal Installation Error #16

Closed JoanPAAL closed 3 months ago

JoanPAAL commented 3 months ago

I realized that something may not be working with the minimal installation, i.e:

pip install pyranges1

Afterwards I typed on the Python interpreter:

import pyranges

And this raised an error:

Traceback (most recent call last):
  File "MY_PATH/.conda/envs/pyranges/lib/python3.12/importlib/metadata/__init__.py", line 397, in from_name
    return next(cls.discover(name=name))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
StopIteration

I also realized that if I included the add-ons i.e:

pip install pyranges1[add-ons]

The error shown above was no longer raised.

So it is not a big deal, since I could finally install PyRanges, but maybe this should be taken care of.

Thanks!