This repository was archived by the owner on Sep 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ printf "* Installing PyTorch\n"
32
32
33
33
printf " Installing torchdata nightly with portalocker\n"
34
34
pip install " portalocker>=2.0.0"
35
- pip install --pre torchdata --extra- index-url https://download.pytorch.org/whl/nightly/cpu
35
+ pip install --pre torchdata --index-url https://download.pytorch.org/whl/nightly/cpu
36
36
37
37
printf " * Installing torchtext\n"
38
38
python setup.py develop
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ conda install -y -c "pytorch-${UPLOAD_CHANNEL}" ${CONDA_CHANNEL_FLAGS} pytorch c
21
21
22
22
printf " * Installing torchdata nightly with portalocker\n"
23
23
pip install " portalocker>=2.0.0"
24
- pip install --pre torchdata --extra- index-url https://download.pytorch.org/whl/nightly/cpu
24
+ pip install --pre torchdata --index-url https://download.pytorch.org/whl/nightly/cpu
25
25
26
26
printf " * Installing pywin32_postinstall script\n"
27
27
curl --output pywin32_postinstall.py https://raw.githubusercontent.com/mhammond/pywin32/main/pywin32_postinstall.py
Original file line number Diff line number Diff line change 47
47
-c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${VERSION}*"] \
48
48
"${CUDATOOLKIT}"
49
49
printf "Installing torchdata nightly\n"
50
- python3 -m pip install --pre torchdata --extra- index-url https://download.pytorch.org/whl/nightly/cpu
50
+ python3 -m pip install --pre torchdata --index-url https://download.pytorch.org/whl/nightly/cpu
51
51
python3 setup.py develop
52
52
# Install integration test dependencies
53
53
python3 -m pip --quiet install parameterized
Original file line number Diff line number Diff line change 59
59
"${CUDATOOLKIT}"
60
60
printf "Installing torchdata nightly\n"
61
61
python3 -m pip install "portalocker>=2.0.0"
62
- python3 -m pip install --pre torchdata --extra- index-url https://download.pytorch.org/whl/nightly/cpu
62
+ python3 -m pip install --pre torchdata --index-url https://download.pytorch.org/whl/nightly/cpu
63
63
python3 setup.py develop
64
64
python3 -m pip install parameterized
65
65
Original file line number Diff line number Diff line change 64
64
"${CUDATOOLKIT}"
65
65
printf "Installing torchdata nightly\n"
66
66
python3 -m pip install "portalocker>=2.0.0"
67
- python3 -m pip install --pre torchdata --extra- index-url https://download.pytorch.org/whl/nightly/cpu --quiet
67
+ python3 -m pip install --pre torchdata --index-url https://download.pytorch.org/whl/nightly/cpu --quiet
68
68
python3 setup.py develop
69
69
python3 -m pip install parameterized --quiet
70
70
Original file line number Diff line number Diff line change 66
66
"${CUDATOOLKIT}"
67
67
printf "Installing torchdata nightly\n"
68
68
python3 -m pip install "portalocker>=2.0.0"
69
- python3 -m pip install --pre torchdata --extra- index-url https://download.pytorch.org/whl/nightly/cpu
69
+ python3 -m pip install --pre torchdata --index-url https://download.pytorch.org/whl/nightly/cpu
70
70
python3 setup.py develop
71
71
python3 -m pip install parameterized
72
72
Original file line number Diff line number Diff line change 59
59
cpuonly
60
60
printf "Installing torchdata nightly\n"
61
61
python -m pip install "portalocker>=2.0.0"
62
- python -m pip install --pre torchdata --extra- index-url https://download.pytorch.org/whl/nightly/cpu
62
+ python -m pip install --pre torchdata --index-url https://download.pytorch.org/whl/nightly/cpu
63
63
64
64
printf "* Installing pywin32_postinstall script\n"
65
65
curl --output pywin32_postinstall.py https://raw.githubusercontent.com/mhammond/pywin32/main/pywin32_postinstall.py
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ if [ "$package_type" = "wheel" ]; then
22
22
if [ " $channel " = " nightly" ]; then
23
23
install_cmd=" ${install_cmd} --pre"
24
24
fi
25
- install_channel=" --extra- index-url https://download.pytorch.org/whl/${channel} /cpu"
25
+ install_channel=" --index-url https://download.pytorch.org/whl/${channel} /cpu"
26
26
else
27
27
install_cmd=" conda install"
28
28
install_channel=" -c pytorch-${channel} "
You can’t perform that action at this time.
0 commit comments