-
Notifications
You must be signed in to change notification settings - Fork 265
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 'vortex.model' #21
Comments
yes, I also faced this problem. × python setup.py bdist_wheel did not run successfully.
note: This error originates from a subprocess, and is likely not a problem with pip. |
yes, I also faced this problem. |
If you're having issues, try starting from a fresh env, import the submodules, cd directly into vortex and run make there:
|
I had the same problem, and then following your solution leads to a second one.
|
This strategy does not work, here is the resulting error: note: This error originates from a subprocess, and is likely not a problem with pip. |
Error after running:
python ./test/test_evo2.py --model_name evo2_7b
ModuleNotFoundError: No module named 'vortex.model'
vortex and torch versions are not consistent in requirements.txt and other files.
vortex/requirements.txt
torch>=2.6.0
rich
ruff
pre-commit
vortex/pyproject.toml
name = "vortex"
version = "0.0.2"
description = "Reference implementation of operators for deep signal processing architectures"
readme = "README.md"
license = {file = "LICENSE"}
authors = [{ name = "Michael Poli"}]
requires-python = ">=3.11"
dependencies = [
"torch==2.5.1",
"rich==13.9.2",
"ruff==0.1.1",
"numpy",
"pre-commit==4.0.1",
"einops==0.8.0",
"packaging",
"pip",
"build",
"wheel",
"tqdm",
"setuptools",
]
vortex/setup.py
setup(
name="vortex",
version="1.0.0",
description="Inference and utilities for convolutional multi-hybrid models",
long_description=readme,
long_description_content_type="text/markdown",
author="Michael Poli",
url="http://github.com/zymrael/vortex",
license="Apache-2.0",
packages=find_packages(where="vortex"),
install_requires=requirements,
)
The text was updated successfully, but these errors were encountered: