Skip to content

Commit

Permalink
chore: use python3 consistently in makefile (#3152)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
badGarnet authored Jun 5, 2024
1 parent 5203390 commit fdb2737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit fdb2737

Please sign in to comment.