Skip to content
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
26 changes: 13 additions & 13 deletions install_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,19 +142,6 @@ def install_requirements(use_pytorch_nightly):


def install_optional_example_requirements(use_pytorch_nightly):
print("Installing packages in requirements-examples.txt")
subprocess.run(
[
sys.executable,
"-m",
"pip",
"install",
"-r",
"requirements-examples.txt",
],
check=True,
)

print("Installing torch domain libraries")
DOMAIN_LIBRARIES = [
(
Expand All @@ -178,6 +165,19 @@ def install_optional_example_requirements(use_pytorch_nightly):
check=True,
)

print("Installing packages in requirements-examples.txt")
subprocess.run(
[
sys.executable,
"-m",
"pip",
"install",
"-r",
"requirements-examples.txt",
],
check=True,
)


# Prebuilt binaries for Intel-based macOS are no longer available on PyPI; users must compile from source.
# PyTorch stopped building macOS x86_64 binaries since version 2.3.0 (January 2024).
Expand Down
Loading