diff --git a/install_requirements.py b/install_requirements.py index 3bd75cad6a3..15b4a23a879 100644 --- a/install_requirements.py +++ b/install_requirements.py @@ -112,13 +112,8 @@ def install_requirements(use_pytorch_nightly): LOCAL_REQUIREMENTS = [ "third-party/ao", # We need the latest kernels for fast iteration, so not relying on pypi. - ] + ( - [ - "extension/llm/tokenizers", # TODO(larryliu0820): Setup a pypi package for this. - ] - if sys.platform != "win32" - else [] - ) # TODO(gjcomer): Re-enable when buildable on Windows. + "extension/llm/tokenizers", # TODO(larryliu0820): Setup a pypi package for this. + ] # Install packages directly from local copy instead of pypi. # This is usually not recommended.