-
Notifications
You must be signed in to change notification settings - Fork 59
Description
The environment was successfuly created in anaconda prompt with: conda env create -n bsoid_v2 -f requirements_win.yaml (windows). Running the app also worked, it opened in Chrome. I went down through the workflow and once I entered "test_2024" into the b-soid variable prefix name section I got this error:
ImportError: Missing optional dependency 'tables'. Use pip or conda to install tables.
I tried to install tables in the conda environment and I got this error:
Collecting package metadata (repodata.json): done
Solving environment: | warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE
failed
LibMambaUnsatisfiableError: Encountered problems while solving:
- package tables-3.9.1-py310hcff0796_0 requires python >=3.10,<3.11.0a0, but none of the providers can be installed
Could not solve for environment specs
The following packages are incompatible
├─ pin-1 is installable and it requires
│ └─ python 3.7.* , which can be installed;
└─ tables is not installable because there are no viable options
├─ tables [3.9.1|3.9.2] would require
│ └─ python >=3.10,<3.11.0a0 , which conflicts with any installable versions previously reported;
├─ tables [3.9.1|3.9.2] would require
│ └─ python >=3.11,<3.12.0a0 , which conflicts with any installable versions previously reported;
├─ tables [3.9.1|3.9.2] would require
│ └─ python >=3.12,<3.13.0a0 , which conflicts with any installable versions previously reported;
└─ tables [3.9.1|3.9.2] would require
└─ python >=3.9,<3.10.0a0 , which conflicts with any installable versions previously reported.
Then I deleted the environment and edited the dependencies yaml to include tables and tried to recreate the environment. I got the same error.