Hi. It would be a nice feature to be able to give a URL to a lock file for conda-lock install's lock file positional argument conda-lock install [OPTIONS] [LOCK_FILE] as can be done with micromamba create's --file argument. At the moment conda-lock install explicitly looks for a...
Use pipx to install conda-lock from HEAD given that conda-lock (v2.5.7) has a major bug given the vendored Poetry solver that makes conda-lock unusable. This has already been fixed but a new post 2.5.7 release has yet to be made, so on recommendations from the developer team install...
Speeding up installs, since you don’t have to wait for the Conda package resolver. Allowing for reproducible builds, by transitively pinning the dependencies. In addition, you can specify which operating system you want to build the lock file for, so you can create a Linux lock file on ot...
conda-lock install fails if URL includes percent encoded character #764 openedJan 7, 2025bymhoeger 2 tasks done 1 Better integration withcondacommands #759 openedDec 9, 2024bytravishathaway 2 tasks done 2 free-threaded wheel not picked in pip dependencies ...
With this PR you are now able to see the stdout and stderr of the conda/mamba install in real time in your terminal. We've noticed that when running conda-lock install on large lock files, you to s...
conda install "$(get_dep conda-lock min)" -y python -m pip install "$(get_dep conda-lock min)" conda-lock install --name $ENV_NAME $LOCK_FILE fi }2 changes: 1 addition & 1 deletion 2 pyproject.toml Original file line numberDiff line numberDiff line change ...
Thanks again for your work, we really appreciate it! Running the command conda run -n mlops conda-lock install -n uberlog-ai uberlog-ai.conda-lock.yml, I get the unexpected result of my-env being installed in a subdirectory of the mlops-...
conda-lock install -n ${{ env.conda-env-name-no-time }}-$(date --date "${{ env.workflow-timestamp }}" +%Y%m%d)-riscv-tools ./conda-requirements-riscv-tools-linux-64.conda-lock.yml conda-lock install -n ${{ env.conda-env-name-no-time }}-$(date --date "${{ env.workflow...
f"Could not perform conda install using {file} lock file into {name or prefix}" ) sys.exit(1) if p.stderr: for line in p.stderr: logging.error(line if not line.endswith("\n") else line[:-1])if p.returncode != 0: print( f"Could not perform conda install using {file} loc...
TO_INSTALL="$@" if [[ "$DISTRIB" == *"mamba"* ]]; then mamba create -n $VIRTUALENV --yes $TO_INSTALL else conda config --show conda create -n $VIRTUALENV --yes $TO_INSTALL fi source activate $VIRTUALENV } setup_ccache() { CCACHE_BIN=`which ccache || echo ""` if [[ "${...