I installed Protonify in WSL; the Python version that I used is Python3.13. It is installed correctly, but when I tried to call protonify (even only protonify --help) it gave me a Segmentation fault.
Then, I opened ~/miniconda3/lib/python3.13/site-packages/protonify/pka_utils.py
I commented out this part:
try:
from IPython.display import display
except ImportError:
Fallback for non-notebook environments
def display(obj):
pass
and now protonify is working
I installed Protonify in WSL; the Python version that I used is Python3.13. It is installed correctly, but when I tried to call protonify (even only protonify --help) it gave me a Segmentation fault.
Then, I opened ~/miniconda3/lib/python3.13/site-packages/protonify/pka_utils.py
I commented out this part:
try:
from IPython.display import display
except ImportError:
Fallback for non-notebook environments
def display(obj):
pass
and now protonify is working