diff --git a/python/README.md b/python/README.md index d1d9239..71cdaf3 100644 --- a/python/README.md +++ b/python/README.md @@ -5,7 +5,8 @@ Python bindings through cFFI (API, out-of-line) for calling enry Go functions ex ## Build ``` -$ cd .. && make static +$ pushd .. && make static && popd +$ pip install -r requirments.txt $ python build_enry.py ``` diff --git a/python/setup.py b/python/setup.py index 35662b8..5c07e5a 100644 --- a/python/setup.py +++ b/python/setup.py @@ -12,7 +12,7 @@ logger = getLogger(__name__) def build_go_archive(): logger.info("Building C archive with static library") if shutil.which("go") is None: - raise EnvironmentError("You should have go installed and available on your path in order to build this module") + raise EnvironmentError("You should have Go installed and available on your path in order to build this module") subprocess.check_output(["make", "static"], cwd="../") logger.info("C archive successfully built")