From e34ec0aff1c1b1046743ccdf16bbd2cc592ac656 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Tue, 1 Aug 2023 20:27:27 -0700 Subject: [PATCH] Update README.md: fix missing -r argument to pip Pip complains without -r before passing in a requirements file. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f8f4b8d0..4ff2e59f6 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ If you encounter issues with transitive dependencies and you are using the nativ ```bash git clone -b rX.Y.Z https://github.com/google/paxml -pip install --no-deps paxml/paxml/pip_package/requirements.txt +pip install --no-deps -r paxml/paxml/pip_package/requirements.txt ``` For installing the dev version from github, and for the ease of editing code: