-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ModuleNotFoundError: No module named 'typeid' #3
Comments
Try |
The project is using Poetry for dependency management, since it has a So, to install the missing typeid module using Poetry:
this will create a virtual environment for the project, so now run:
|
Thanks guys! It works now. |
i'm getting this message after this guess i'd just have to use python3.10 |
Also, if you run into other dependency errors run |
i had to do 'poetry add beautifulsoup4', eventhough beautifulsoup4 was in [tool.poetry.dependencies] under pyproject.toml |
C:\Users\Administrator\Documents\GitHub\mindgraph>python main.py
Traceback (most recent call last):
File "C:\Users\Administrator\Documents\GitHub\mindgraph\main.py", line 1, in
from app import create_app
File "C:\Users\Administrator\Documents\GitHub\mindgraph\app_init_.py", line 23, in
from .integrations.database import CurrentDBIntegration
File "C:\Users\Administrator\Documents\GitHub\mindgraph\app\integrations\database_init_.py", line 4, in
from .nexus import NexusDBIntegration
File "C:\Users\Administrator\Documents\GitHub\mindgraph\app\integrations\database\nexus.py", line 15, in
from typeid import TypeID, get_prefix_and_suffix as typeid_prefix
ModuleNotFoundError: No module named 'typeid'
The text was updated successfully, but these errors were encountered: