From b9778f09092531d8cabccf002d8c49a86ed2940a Mon Sep 17 00:00:00 2001 From: yillkid Date: Mon, 20 Aug 2018 17:33:43 +0800 Subject: [PATCH] Fix typo --- mk/python.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mk/python.mk b/mk/python.mk index 0b37fe2..2fdd702 100644 --- a/mk/python.mk +++ b/mk/python.mk @@ -1,12 +1,12 @@ -PYTHON = python3 +PYTHON = python3.5 PYTHON := $(shell which $(PYTHON)) ifndef PYTHON -$(error "python3 is required.") +$(error "python3.5 is required.") endif # check "iota" module in Python installation PY_CHECK_MOD_IOTA := $(shell $(PYTHON) -c "import iota" 2>/dev/null && \ echo 1 || echo 0) ifneq ("$(PY_CHECK_MOD_IOTA)","1") - $(error "dependency error $@ because PyOTA is not installed, to install the latest version: pip install pyota") + $(error "dependency error $@ because PyOTA is not installed, to install the latest version: pip3 install pyota") endif