From 7e54ea80fa5172a2070f4a3a0b261dde27022e01 Mon Sep 17 00:00:00 2001 From: shankari Date: Sun, 7 Feb 2021 16:04:53 -0800 Subject: [PATCH] Fix the installation instructions in the README I don't really have time to fix https://github.com/maxcountryman/flask-uploads/issues/39 But as @maxcountryman pointed out there, > Python tooling generally makes it trivial to install from git directly This just updates the README installation instructions to install from git directly. Hopefully, this will encourage users to work with the current release and not request updates to PyPi --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d9de0f2..e9bae7d 100644 --- a/README.md +++ b/README.md @@ -5,5 +5,5 @@ Flask-Uploads provides file uploads for Flask. ## Installation ```sh -pip install flask-uploads +pip install git+https://github.com/maxcountryman/flask-uploads.git ```