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
On main I generated a lockfile with
main
conda-lock -f environment-macOS.yml -p osx-64 -p linux-64 Locking dependencies for ['linux-64', 'osx-64']...
Afterwards, conda-lock printed the following message to the console:
- Install conda-lock install --name YOURENV --file conda-lock.yml
This error out because --file is not a valid argument. The following worked
--file
conda-lock install --name YOURENV conda-lock.yml
The text was updated successfully, but these errors were encountered:
Those two lines are exactly the same?
Sorry, something went wrong.
My bad - fixed the typo.
Correct install instructions for lock file
23e779e
Fixes conda#140.
Successfully merging a pull request may close this issue.
On
main
I generated a lockfile withAfterwards, conda-lock printed the following message to the console:
This error out because
--file
is not a valid argument. The following workedThe text was updated successfully, but these errors were encountered: