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
Description
Trying to run code from steps 1-3 in Pyfhel's MultDepth and Relinearization tutorial results in an ImportError when running from Pyfhel import Pyfhel.
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/Users/kiran/Documents/workspace/Projects/Q-SECURE/project/test/test.py", line 5, in <module>
from Pyfhel import Pyfhel
File "/Users/kiran/miniconda3/envs/q-secure_env/lib/python3.11/site-packages/Pyfhel/__init__.py", line 1, in <module>
from .Pyfhel import Pyfhel
ImportError: dlopen(/Users/kiran/miniconda3/envs/q-secure_env/lib/python3.11/site-packages/Pyfhel/Pyfhel.cpython-311-darwin.so, 0x0002): symbol not found in flat namespace '__ZN4seal13parms_id_zeroE'
Code To Reproduce Error
Activate conda virtual environment and install Pyfhel via pip. I also set/added the environment variables from Pyfhel's Installing a C/C++ Compiler instructions to my .bash_profile. Up until now, everything's fine. Running the following command is what produces the aforementioned errors:
python -m project.test.test
Expected behavior
Successfully run code from steps 1-3 in Pyfhel's MultDepth and Relinearization tutorial, with the described outputs printed to my terminal.
Setup:
OS: Sonoma 14.4
Python: 3.11.8
C compiler version: [Clang 14.0.6] on darwin
Pyfhel Version: 3.4.2
The text was updated successfully, but these errors were encountered:
Description
Trying to run code from steps 1-3 in Pyfhel's MultDepth and Relinearization tutorial results in an
ImportError
when runningfrom Pyfhel import Pyfhel
.Code To Reproduce Error
Activate conda virtual environment and install Pyfhel via
pip
. I also set/added the environment variables from Pyfhel's Installing a C/C++ Compiler instructions to my.bash_profile
. Up until now, everything's fine. Running the following command is what produces the aforementioned errors:Expected behavior
Successfully run code from steps 1-3 in Pyfhel's MultDepth and Relinearization tutorial, with the described outputs printed to my terminal.
Setup:
The text was updated successfully, but these errors were encountered: