Missing paths and files of self submodules cause incomplete install using the recent venv management tools like pixi(faster version of conda), especially utils.
Reprecation:
pixi add --pypi --git https://github.com/apple/ml-cvnets --editable cvnets(definite) or pip install git+https://github.com/apple/ml-cvnets(possible)
on clean install. ModuleNotFoundError: 'utils' or 'cvnets.utils' should occur.
Possible reasons are: some imports from utils are described as from utils, not from cvnets.utils; pixi fails to handle setup.py about including all except exclude.
Missing paths and files of self submodules cause incomplete install using the recent venv management tools like pixi(faster version of conda), especially utils.
Reprecation:
pixi add --pypi --git https://github.com/apple/ml-cvnets --editable cvnets(definite) orpip install git+https://github.com/apple/ml-cvnets(possible)on clean install. ModuleNotFoundError: 'utils' or 'cvnets.utils' should occur.
Possible reasons are: some imports from utils are described as
from utils, notfrom cvnets.utils; pixi fails to handle setup.py about including all except exclude.