Skip to content

Commit

Permalink
Install requests from pypi
Browse files Browse the repository at this point in the history
Not sure why, but attempt to install them from Anaconda causes conflict,
when Python-3.13 is used
  • Loading branch information
malfet committed Oct 16, 2024
1 parent 7eb2cda commit bcd0972
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wheel/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ tmp_env_name="wheel_py$python_nodot"
conda create ${EXTRA_CONDA_INSTALL_FLAGS} -yn "$tmp_env_name" python="$desired_python"
source activate "$tmp_env_name"

pip install -q "numpy=${NUMPY_PINNED_VERSION}" "pyyaml${PYYAML_PINNED_VERSION}"
retry conda install ${EXTRA_CONDA_INSTALL_FLAGS} -yq llvm-openmp=14.0.6 cmake ninja "setuptools${SETUPTOOLS_PINNED_VERSION}" typing_extensions requests
pip install -q "numpy=${NUMPY_PINNED_VERSION}" "pyyaml${PYYAML_PINNED_VERSION}" requests
retry conda install ${EXTRA_CONDA_INSTALL_FLAGS} -yq llvm-openmp=14.0.6 cmake ninja "setuptools${SETUPTOOLS_PINNED_VERSION}" typing_extensions
retry pip install -qr "${pytorch_rootdir}/requirements.txt" || true

# For USE_DISTRIBUTED=1 on macOS, need libuv and pkg-config to find libuv.
Expand Down

0 comments on commit bcd0972

Please sign in to comment.