Description
I attempted to set up the environment using the instructions in the README, but conda create fails. The current requirements.txt file appears to be a raw dump of a specific user's environment (conda list --export), which includes:
- System-specific build strings (e.g.,
h14c3975_1002) that are incompatible with other OS versions or architectures.
pypi_0 tags which conda cannot resolve directly.
opencv requirements that cause ModuleNotFoundError: No module named 'cv2' or shared library errors (libGL.so.1) on fresh Linux installs.
Steps to Reproduce
git clone https://github.com/zhenglab/CAML.git
conda create --name caml --file requirements.txt
Error Log
LibMambaUnsatisfiableError: Encountered problems while solving:
...
package ... h14c3975_1002 does not exist
Suggested Fix
I have successfully reconstructed the environment by cleaning the version tags and switching to a hybrid Conda/Pip setup. I will open a PR shortly with a cross-platform environment.yml.
Description
I attempted to set up the environment using the instructions in the README, but
conda createfails. The currentrequirements.txtfile appears to be a raw dump of a specific user's environment (conda list --export), which includes:h14c3975_1002) that are incompatible with other OS versions or architectures.pypi_0tags whichcondacannot resolve directly.opencvrequirements that causeModuleNotFoundError: No module named 'cv2'or shared library errors (libGL.so.1) on fresh Linux installs.Steps to Reproduce
git clone https://github.com/zhenglab/CAML.gitconda create --name caml --file requirements.txtError Log
Suggested Fix
I have successfully reconstructed the environment by cleaning the version tags and switching to a hybrid Conda/Pip setup. I will open a PR shortly with a cross-platform
environment.yml.