We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using latest tagged release v3.2.2 but probably also affects master:
The build stops at Dockefile line 69:
ln. 69 RUN $CONDA_DIR/bin/conda create -n mitofinder_env --experimental-solver=libmamba python=2.7
The complain is that --experimental-solver argument does not exists.
--experimental-solver
I simply removed the "experimental part" and it works:
ln. 69 RUN $CONDA_DIR/bin/conda create -n mitofinder_env --solver libmamba python=2.7
The text was updated successfully, but these errors were encountered:
Update Dockerfile
c7d4595
This patch fixes issue marcelauliano#93
No branches or pull requests
Description
Using latest tagged release v3.2.2 but probably also affects master:
The build stops at Dockefile line 69:
The complain is that
--experimental-solver
argument does not exists.Aparent workaround/fix:
I simply removed the "experimental part" and it works:
The text was updated successfully, but these errors were encountered: