From 663d786f6888bbd308528284b6a26d433ef314ee Mon Sep 17 00:00:00 2001 From: Ameya Pandilwar Date: Wed, 22 Jun 2016 16:26:35 -0400 Subject: [PATCH] Update documentation for upgrading Flask using 'pip' command (#1918) --- docs/upgrading.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/upgrading.rst b/docs/upgrading.rst index 5ab73868..9e815379 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -14,10 +14,10 @@ This section of the documentation enumerates all the changes in Flask from release to release and how you can change your code to have a painless updating experience. -If you want to use the :command:`easy_install` command to upgrade your Flask -installation, make sure to pass it the :option:`-U` parameter:: +Use the :command:`pip` command to upgrade your existing Flask installation by +providing the :option:`--upgrade` parameter:: - $ easy_install -U Flask + $ pip install --upgrade Flask .. _upgrading-to-10: