From fdb27378cb7fc25bcae66bf52bcfc16e051a42a8 Mon Sep 17 00:00:00 2001 From: Yao You Date: Tue, 4 Jun 2024 19:05:57 -0500 Subject: [PATCH] chore: use python3 consistently in makefile (#3152) This PR changes two `python` commands in `Makefile` to use `python3` to be consistent with other make commands. This makes it more explicit on which python to use when the makefile is used outside of a controlled virtualenv where only one python exists. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d99aed158..58e0ce846 100644 --- a/Makefile +++ b/Makefile @@ -38,8 +38,8 @@ install-huggingface: .PHONY: install-nltk-models install-nltk-models: - python -c "import nltk; nltk.download('punkt')" - python -c "import nltk; nltk.download('averaged_perceptron_tagger')" + python3 -c "import nltk; nltk.download('punkt')" + python3 -c "import nltk; nltk.download('averaged_perceptron_tagger')" .PHONY: install-test install-test: