mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-09-27 01:10:03 +00:00
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.
This commit is contained in:
parent
5203390a4a
commit
fdb27378cb
4
Makefile
4
Makefile
@ -38,8 +38,8 @@ install-huggingface:
|
|||||||
|
|
||||||
.PHONY: install-nltk-models
|
.PHONY: install-nltk-models
|
||||||
install-nltk-models:
|
install-nltk-models:
|
||||||
python -c "import nltk; nltk.download('punkt')"
|
python3 -c "import nltk; nltk.download('punkt')"
|
||||||
python -c "import nltk; nltk.download('averaged_perceptron_tagger')"
|
python3 -c "import nltk; nltk.download('averaged_perceptron_tagger')"
|
||||||
|
|
||||||
.PHONY: install-test
|
.PHONY: install-test
|
||||||
install-test:
|
install-test:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user