We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 584dc60 commit f69c6cfCopy full SHA for f69c6cf
install_requirements.py
@@ -147,25 +147,6 @@ def install_requirements(use_pytorch_nightly):
147
148
149
def install_optional_example_requirements(use_pytorch_nightly):
150
- print("Installing torch domain libraries")
151
- DOMAIN_LIBRARIES = [
152
- ("torchvision==0.24.0" if use_pytorch_nightly else "torchvision"),
153
- "torchaudio==2.9.0" if use_pytorch_nightly else "torchaudio",
154
- ]
155
- # Then install domain libraries
156
- subprocess.run(
157
- [
158
- sys.executable,
159
- "-m",
160
- "pip",
161
- "install",
162
- *DOMAIN_LIBRARIES,
163
- "--extra-index-url",
164
- TORCH_URL,
165
- ],
166
- check=True,
167
- )
168
-
169
print("Installing packages in requirements-examples.txt")
170
subprocess.run(
171
[
0 commit comments