From d7cd1258161ce4f54e263b43ddbadd0f367cd0e0 Mon Sep 17 00:00:00 2001 From: Timothy Fei Truong Jr Date: Tue, 30 May 2023 13:46:27 +0000 Subject: [PATCH] preinstall setuptools --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 02554d29a..4bf72e5f1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -92,7 +92,7 @@ jobs: - name: Install PyTorch ${{ matrix.torch-version }}+cu${{ matrix.cuda-version }} run: | - pip install numpy pyyaml scipy ipython mkl mkl-include ninja cython typing pandas typing-extensions dataclasses packaging einops && conda clean -ya + pip install numpy pyyaml scipy ipython mkl mkl-include ninja cython typing pandas typing-extensions dataclasses packaging einops setuptools && conda clean -ya pip install --no-cache-dir torch==${{ matrix.torch-version }} --index-url https://download.pytorch.org/whl/cu${{ matrix.cuda-version }} python --version python -c "import torch; print('PyTorch:', torch.__version__)"