From 9e9944b81af449e470d3f478f9492052612e94b4 Mon Sep 17 00:00:00 2001 From: Akash Kumar <32223788+piratedvirus09@users.noreply.github.com> Date: Mon, 3 Dec 2018 22:12:00 +0530 Subject: [PATCH] Add deprecation note for easy_install (#22909) * Add deprecation note for easy_install Add the text "easy_install has been deprecated" to the article. * fix(guide): update link to easy_install --- guide/english/python/using-pip/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/using-pip/index.md b/guide/english/python/using-pip/index.md index 924842f8be..3a68b43f62 100644 --- a/guide/english/python/using-pip/index.md +++ b/guide/english/python/using-pip/index.md @@ -33,7 +33,7 @@ Using `easy_install` is also simple. The syntax is: easy_install -However, `pip` is more popular than using `easy_install`. +However, `pip` is more popular than using `easy_install`, and `easy_install` is deprecated. **Note:** On some systems where both Python 2 & Python 3 is installed, `pip` and `pip3` will do different things. `pip` installs the Python 2 version of the package, and `pip3` will install the Python 3 version of the package. For more information on the difference between Python 2 & 3, see [this](https://guide.freecodecamp.org/python/python-2-vs-python-3) guide.