-
Notifications
You must be signed in to change notification settings - Fork 6
Description
Followed directions for installing bitlib python3 package. Bookworm requires a virtual environment to be created to isolate python packages from other environments. After doing so, 2 bitlib packages show up when doing a pip list. When executing my python3 code, I get an ImportError stating that BL_Open can't be found.
(.env) xeng@Vanta5:~/Vanta $ python3 MainServer.py
Traceback (most recent call last):
File "/home/xeng/Vanta/MainServer.py", line 14, in
import MainDelegator
File "/home/xeng/Vanta/MainDelegator.py", line 13, in
import bscope
File "/home/xeng/Vanta/bscope.py", line 9, in
from bitlib import *
ImportError: /home/xeng/.env/lib/python3.11/site-packages/bitlib-2.0-py3.11-linux-aarch64.egg/bitlib.cpython-311-aarch64-linux-gnu.so: undefined symbol: BL_Open
Is there something new with Bookworm that I don't know about?