Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/docker/common/install_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ install_miniconda() {
install_python() {
pushd /opt/conda
# Install the selected Python version for CI jobs
as_ci_user conda create -n "py_${PYTHON_VERSION}" -y --file /opt/conda/conda-env-ci.txt python="${PYTHON_VERSION}"
as_ci_user conda create -c conda-forge -n "py_${PYTHON_VERSION}" -y --file /opt/conda/conda-env-ci.txt python="${PYTHON_VERSION}"

# From https://github.com/pytorch/pytorch/blob/main/.ci/docker/common/install_conda.sh
if [[ $(uname -m) == "aarch64" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/setup-conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -ex

install_conda() {
pushd .ci/docker || return
${CONDA_INSTALL} -y --file conda-env-ci.txt
${CONDA_INSTALL} -c conda-forge -y --file conda-env-ci.txt
popd || return
}

Expand Down
Loading