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
Some (or all?) dependencies aren't getting installed by pip.
Example:
The cpuinfo module may not get installed by pip, but it's imported in the __init__.py.
On a fresh pip install (from grape) and venv:
>>> from ensmallen import Graph
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/harry/test85812/lib/python3.8/site-packages/ensmallen/__init__.py", line 8, in <module>
import cpuinfo
ModuleNotFoundError: No module named 'cpuinfo'
I see py-cpuinfo is in the Cargo.toml, and if I install it with pip then this solves the problem, but...
then I get a ModuleNotFoundError for bioregistry.
Same for downloaders.
Ensmallen is 0.8.35.
The text was updated successfully, but these errors were encountered:
Some (or all?) dependencies aren't getting installed by pip.
Example:
The
cpuinfo
module may not get installed by pip, but it's imported in the__init__.py
.On a fresh pip install (from grape) and venv:
I see
py-cpuinfo
is in the Cargo.toml, and if I install it with pip then this solves the problem, but...then I get a ModuleNotFoundError for
bioregistry
.Same for
downloaders
.Ensmallen is
0.8.35
.The text was updated successfully, but these errors were encountered: