Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Update pytorch nightly installation to use cpu version of torchtext #3011

Merged
merged 2 commits into from
Mar 9, 2024
Merged
Changes from all commits
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
5 changes: 4 additions & 1 deletion ts_scripts/install_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,10 @@ def install_python_packages(self, cuda_version, requirements_file_path, nightly)
if nightly:
pt_nightly = "cpu" if not cuda_version else cuda_version
os.system(
f"pip3 install numpy --pre torch torchvision torchtext torchaudio --force-reinstall --index-url https://download.pytorch.org/whl/nightly/{pt_nightly}"
f"pip3 install numpy --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/{pt_nightly}"
)
os.system(
f"pip3 install --pre torchtext --index-url https://download.pytorch.org/whl/nightly/cpu"
)
else:
self.install_torch_packages(cuda_version)
Expand Down