You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,8 @@ A Python virtual environment is also highly recommended.
42
42
*[Install a virtual env for Python 3](https://docs.python.org/3/tutorial/venv.html)
43
43
44
44
### Installing Required Python Packages
45
-
SDK package installation commands may differ depending on the environment where it is installed. The three installation options are provided for different environments. Be sure to upgrade to the latest pip and setuptools.
45
+
SDK package installation commands may differ depending on the environment where it is being installed. The three installation options provided below are for different environments.
46
+
*pip* and *setuptools* are common requirements for these installation types, upgrade to the latest *pip* and *setuptools*.
46
47
47
48
**NOTE:** The SDK also requires OpenSSL 1.0.1+ in order to support TLS1.1 & 1.2
Local installation can be used in an environment which either do not have Github access or users do not want to install from Github repository.
63
64
64
-
Install all the wheel files from SDK lib directory
65
+
Install all the wheel files from SDK's lib directory
65
66
```cmd
66
67
pip install -U lib/*/*.whl
67
68
```
68
-
Install dependencies like lxml and pyvmomi from PyPi as other requirements were installed from SDK lib directory
69
+
Install dependencies like *lxml* and *pyvmomi* from PyPI as other requirements were installed from SDK's lib directory
69
70
```cmd
70
71
pip install -U <SDK_DIRECTORY>
71
72
```
72
73
73
74
##### 3. Installation in an air gap environment
74
-
For these type of environment an additional step is required to ensure SDK's dependencies are available.
75
-
Following dependencies have to be downloaded from PyPi and transferred to the air gap environment.
75
+
For this type of environment an additional step is required to ensure SDK's dependencies are available.
76
+
Following dependencies have to be downloaded from PyPI and transferred to the air gap environment.
76
77
77
-
This step has to be done in an environment which has PyPI access.
78
+
**NOTE:**This step has to be done in an environment which has PyPI access.
78
79
```cmd
79
80
pip download -r requirements_pypi.txt -d lib
80
81
zip -r lib.zip lib/
81
82
```
82
-
Following on the air gap environment.
83
+
Follow these steps in the air gap environment.
83
84
Unzip the lib.zip under automation SDK home directory
84
85
```cmd
85
86
unzip lib.zip
@@ -88,7 +89,7 @@ Install all the dependencies and packages
88
89
```cmd
89
90
pip install -U lib/*/*.whl
90
91
```
91
-
This is to install the “vSphere-Automation-SDK” which provides an SDK version. This also ensures that everything the SDK needs is installed. If not this will fail.
92
+
This is to install the "vSphere-Automation-SDK" which provides an SDK version. It also ensures that all the SDK requirements are installed. If not, the installation will fail.
0 commit comments