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
I've found the following issue when trying to use n2 with pytorch in the same project.
It only happens when pytorch is imported BEFORE n2. When n2 is imported, I get this:
>>> import n2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: /home/user/workspace/n2/venv/lib/python3.8/site-packages/torch/lib/libgomp-7c85b1e2.so.1: version `GOMP_5.0' not found (required by /home/user/workspace/n2/venv/lib/python3.8/site-packages/n2.cpython-38-x86_64-linux-gnu.so)
Steps to reproduce are very simple.
Just run pip install torch n2 ,then run:
importtorchimportn2
My machine is:
Python 3.8.6
Ubuntu 20.04.2 LTS
Any available workarounds other than forcing import order?
The text was updated successfully, but these errors were encountered:
I've found the following issue when trying to use n2 with pytorch in the same project.
It only happens when pytorch is imported BEFORE n2. When n2 is imported, I get this:
Steps to reproduce are very simple.
Just run
pip install torch n2
,then run:My machine is:
Any available workarounds other than forcing import order?
The text was updated successfully, but these errors were encountered: