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
Installation includes all dependencies so import can work immediately
Actual behavior
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Users/addisonklinke/venv/test/lib/python3.12/site-packages/mlconjug3/__init__.py", line 39, in <module>
from .constants import *
File "/Users/addisonklinke/venv/test/lib/python3.12/site-packages/mlconjug3/constants/__init__.py", line 1, in <module>
from .constants import *
File "/Users/addisonklinke/venv/test/lib/python3.12/site-packages/mlconjug3/constants/constants.py", line 1, in <module>
import pkg_resources
ModuleNotFoundError: No module named 'pkg_resources'
Then after running pip install setuptools as recommended in this answer
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Users/addisonklinke/venv/test/lib/python3.12/site-packages/mlconjug3/__init__.py", line 39, in <module>
from .constants import *
File "/Users/addisonklinke/venv/test/lib/python3.12/site-packages/mlconjug3/constants/__init__.py", line 1, in <module>
from .constants import *
File "/Users/addisonklinke/venv/test/lib/python3.12/site-packages/mlconjug3/constants/constants.py", line 5, in <module>
from yaml import load, dump
ModuleNotFoundError: No module named 'yaml'
Describe the bug
Pip install doesn't pull in dependencies
To Reproduce
Expected behavior
Installation includes all dependencies so import can work immediately
Actual behavior
Then after running
pip install setuptools
as recommended in this answerand so on through the entire list of requirements in
setup.py
Desktop:
The text was updated successfully, but these errors were encountered: