Skip to content

Commit fdb2737

Browse files
authored
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.
1 parent 5203390 commit fdb2737

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ install-huggingface:
3838

3939
.PHONY: install-nltk-models
4040
install-nltk-models:
41-
python -c "import nltk; nltk.download('punkt')"
42-
python -c "import nltk; nltk.download('averaged_perceptron_tagger')"
41+
python3 -c "import nltk; nltk.download('punkt')"
42+
python3 -c "import nltk; nltk.download('averaged_perceptron_tagger')"
4343

4444
.PHONY: install-test
4545
install-test:

0 commit comments

Comments
 (0)