From 139b15797d7c283da41298e64921c6e65fffcc77 Mon Sep 17 00:00:00 2001 From: Tianhao He Date: Tue, 4 Jun 2019 16:47:50 +0800 Subject: [PATCH] Remove --force-reinstall from pip cmd We have bumpped version for vapi-client-bindings from 1.3.0 to 3.0.0. Note that there is no incompatible API changes in the new API bindings. The change is mainly because we had published 2.5 and 2.6 versions long time ago. In order to avoid confusion we decided to bump the version to 3.0.0 so a newer version can be upgraded even you have 2.5/2.6 installed locally. Hence the --force-reinstall arguments is no longer needed. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a91cbbb7..195fc6ba 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ See example below for specifying the --extra-index-url parameter. ```cmd git clone https://github.com/vmware/vsphere-automation-sdk-python.git cd vsphere-automation-sdk-python -pip install --upgrade --force-reinstall -r requirements.txt --extra-index-url file:////lib +pip install --upgrade -r requirements.txt --extra-index-url file:////lib ``` Example pip install command on Mac OSX. @@ -56,15 +56,15 @@ Example pip install command on Mac OSX. *NOTE*: Be sure to change username "strefethen" to your username: ```cmd -pip install --upgrade --force-reinstall -r requirements.txt --extra-index-url file:///Users/strefethen/github/vsphere-automation-sdk-python/lib +pip install --upgrade -r requirements.txt --extra-index-url file:///Users/strefethen/github/vsphere-automation-sdk-python/lib or -pip install --upgrade --force-reinstall -r requirements.txt --extra-index-url file://$PWD/lib +pip install --upgrade -r requirements.txt --extra-index-url file://$PWD/lib ``` Example pip install command on Windows. ```cmd -pip install --upgrade --force-reinstall -r requirements.txt --extra-index-url file:\\\C:\Users\strefethen\github\vsphere-automation-sdk-python\lib +pip install --upgrade -r requirements.txt --extra-index-url file:\\\C:\Users\strefethen\github\vsphere-automation-sdk-python\lib ``` **NOTE:** The SDK also requires OpenSSL 1.0.1+ if you want to connect to vSphere 6.5+ in order to support TLS1.1 & 1.2