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 installed the betacode module with pip install betacode. Installation goes fine, but when I try to use it, it complains about a missing package 'pygtrie':
c:\a\src\py\tools\tei-xml>py tei.py
Traceback (most recent call last):
File "c:\a\src\py\tools\tei-xml\tei.py", line 3, in
import betacode.conv
File "C:\Program Files\Python39\lib\site-packages\betacode\conv.py", line 4, in
import pygtrie
ModuleNotFoundError: No module named 'pygtrie'
I was expecting pip to handle this sort of thing, installing dependencies as required.
I'm running python 3.9.1 on Windows 10.
The text was updated successfully, but these errors were encountered:
Traceback (most recent call last):
File "/Users//PycharmProjects/bible-analyzer/classics.py", line 29, in
from betacode.conv import beta_to_uni
File "/Users//.local/share/virtualenvs/bible-analyzer/lib/python3.8/site-packages/betacode/conv.py", line 4, in
import pygtrie
ModuleNotFoundError: No module named 'pygtrie'
I installed the betacode module with
pip install betacode
. Installation goes fine, but when I try to use it, it complains about a missing package 'pygtrie':c:\a\src\py\tools\tei-xml>py tei.py
Traceback (most recent call last):
File "c:\a\src\py\tools\tei-xml\tei.py", line 3, in
import betacode.conv
File "C:\Program Files\Python39\lib\site-packages\betacode\conv.py", line 4, in
import pygtrie
ModuleNotFoundError: No module named 'pygtrie'
I was expecting pip to handle this sort of thing, installing dependencies as required.
I'm running python 3.9.1 on Windows 10.
The text was updated successfully, but these errors were encountered: