Open Pellarin opened 1 year ago
The installation part was OK.
I'm in the same situation. I have found out that it seems that perhaps we are unable to install igfold in Pytjon 3.10 and igfold is installed in the Python 3.9 site-package. So it looks like I need to hard coding python-verison. (python_version = "3.9")
But even if I do it that way, I get another problem with torch So now, with the current Colab, notebook is not working properly I think.
[/usr/local/lib/python3.9/site-packages/torch/__init__.py](https://localhost:8080/#) in <module>
214 # The __file__ check only works for Python 3.7 and above.
215 if sys.version_info >= (3, 7) and _C_for_compiled_check.__file__ is None:
--> 216 raise ImportError(textwrap.dedent('''
217 Failed to load PyTorch C extensions:
218 It appears that PyTorch has loaded the `torch/_C` folder
ImportError: Failed to load PyTorch C extensions:
It appears that PyTorch has loaded the `torch/_C` folder
of the PyTorch repository rather than the C extensions which
are expected in the `torch._C` namespace. This can occur when
using the `install` workflow. e.g.
$ python setup.py install && python -c "import torch"
This error can generally be solved using the `develop` workflow
$ python setup.py develop && python -c "import torch" # This should succeed
or by running Python from a different directory.
Hi! I was just running the test case of the colab. Thanks for looking into it