From 97a05ff34a64a6942da0bda4372db0fd09642473 Mon Sep 17 00:00:00 2001
From: "Earl C. Ruby III" <earl@apcera.com>
Date: Thu, 14 Jun 2018 16:01:13 -0700
Subject: [PATCH] Fix the Python and pip version flag in the README

The README says to check if Python and pip are installed type:

```
python -v && pip -v
```

Lowercase `-v` is `--verbose`, uppercase `-V` is `--version`. The
command should be:

```
python -V && pip -V
```
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index dbf9a7e69..baa1a0d45 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@ To deploy the cluster you can use :
 For Vagrant we need to install python dependencies for provisioning tasks.
 Check if Python and pip are installed:
 
-    python -v && pip -v
+    python -V && pip -V
 
 If this returns the version of the software, you're good to go. If not, download and install Python from here <https://www.python.org/downloads/source/>
 Install the necessary requirements
-- 
GitLab