From 87c7979fda143669c0072f06298cf6fbbf2d32da Mon Sep 17 00:00:00 2001 From: nmaciasc <57191683+nmaciasc@users.noreply.github.com> Date: Thu, 14 Jan 2021 14:54:08 -0800 Subject: [PATCH] Updating README to pip3 The README was using pip instead of pip3, pip its having multiple issues right now due to the fact that Python 2 its being completely deprecated, so now pip3 its the one that works fine. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 15cc4bc..1fed9c9 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,10 @@ For API documentation, see the [PythonDocs](https://algorithmia.com/docs/lang/py ## Install from PyPi The official Algorithmia python client is [available on PyPi](https://pypi.python.org/pypi/algorithmia). -Install it with pip: +Install it with pip3: ```bash -pip install algorithmia +pip3 install algorithmia ``` ## Install from source