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
{{ message }}
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
python -c 'import youtokentome; import torch'
works
python -c 'import torch; import youtokentome'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/timothee/.conda/envs/tmp1/lib/python3.10/site-packages/youtokentome/__init__.py", line 1, in <module>
from .youtokentome import BPE
File "/home/timothee/.conda/envs/tmp1/lib/python3.10/site-packages/youtokentome/youtokentome.py", line 4, in <module>
import _youtokentome_cython
ImportError: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /home/timothee/.conda/envs/tmp1/lib/python3.10/site-packages/_youtokentome_cython.cpython-310-x86_64-linux-gnu.so)
environment note:
grep -E '^(VERSION|NAME)=' /etc/os-release
NAME="Oracle Linux Server"
VERSION="7.9"
workaround 1
import torch before import youtokentome or to add:
reduced from a more complex example:
then:
python -c 'import youtokentome; import torch'
works
python -c 'import torch; import youtokentome'
environment note:
workaround 1
import torch
beforeimport youtokentome
or to add:workaround 2
as mentioned in BVLC/caffe#4953 (comment)
neither workaround is great and shouldn't be needed
The text was updated successfully, but these errors were encountered: