Knowledge-Graph-Hub / neat-ml

Network Embedding All the Things
BSD 3-Clause "New" or "Revised" License
18 stars 1 forks source link

Requirement management #32

Closed caufieldjh closed 2 years ago

caufieldjh commented 2 years ago

Running NEAT after a fresh install yields a ModuleNotFoundError for cpuinfo due to ensmallen importing it. This can be avoided with a pip install ensmallen - or even better, pip install grape as this should cover all requirements.

There may also be issues with importing Tensorflow if it is not already installed, as ensmallen/embiggen do not explicitly require it.

caufieldjh commented 2 years ago

Related - transformers requires pyyaml >=5.1 but this may not be present as NEAT does not specify a version

caufieldjh commented 2 years ago

This was the setup order that worked for me:

python setup.py install
pip install grape
pip install transformers
pip install urllib3==1.25.11
justaddcoffee commented 2 years ago

closed by #34