Open dlazarou opened 4 years ago
solved this by installing the correct ivy from the ETH repo: https://github.com/cosmo-ethz/ivy/
Then I got 2 more error msgs that originate from the fact that ivy uses UserDict
and DictMixin
that are not supported in python 3.x.
Workaround was to use the collection
class and add into struct.py
in ivy/utils
folder the following:
#fixed by using:
from collections import UserDict
#fixed also by using:
from collections import MutableMapping as DictMixin
After this fix I started getting other errors as the code progresses:
File "/Users/dimitrioslazarou/anaconda3/envs/tf1/lib/python3.6/abc.py", line 133, in __new__
cls = super().__new__(mcls, name, bases, namespace, **kwargs)
TypeError: Cannot create a consistent method resolution
order (MRO) for bases object, MutableMapping
``` ,
that seem more fundamental :)
Maybe i need to set the correct environment but i don't know the exact versions of packages that
this notebook uses: https://github.com/jakeret/tf_unet/blob/master/demo/demo_radio_data.ipynb
I just want to reproduce it ^.
We renamed "our" ivy
to ivy-wfengine
a while ago in order to avoid this confusion. Regrettably some setup.py
files are not adapted to this.
Can't execute SEEK command from notebook neither terminal, getting this:
I uninstalled and installed SEEK again from the repo, same issue