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
Most problems on OS X have been with loading and linking OpenSSL and zlib. The following commands install necessary packages and tell the Python installer where to find them.
92
+
Most installation problems on macOS are related to loading and linking OpenSSL and zlib. The following command installs the necessary packages and tells the Python installer where to find them:
65
93
66
94
```
67
95
brew install zlib openssl readline
@@ -70,12 +98,12 @@ In **PowerShell** or in a **Command Prompt** window:
70
98
71
99
- **Windows**
72
100
73
-
- In PowerShell, upon executing `bundled_installer`, if you see an error with the message "execution of scripts is disabled on this system", set the [execution policy](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-6) to "RemoteSigned" and then rerun `bundled_installer`.
101
+
- In PowerShell, if you encounter an error with the message "execution of scripts is disabled on this system", set the [execution policy](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-6) to `"RemoteSigned"` and then rerun `bundled_installer`.
74
102
75
103
```ps1
76
104
Set-ExecutionPolicy RemoteSigned
77
105
```
78
-
- If you encounter an error that states "No module named 'virtualenv'", then you can perform the following commands to remedy this issue:
106
+
- If you encounter an error with the message "No module named 'virtualenv'", use the following commands to install `virtualenv` and the EB CLI:
79
107
```ps1
80
108
pip uninstall -y virtualenv
81
109
pip install virtualenv
@@ -84,7 +112,7 @@ In **PowerShell** or in a **Command Prompt** window:
84
112
85
113
#### 2.4. After installation
86
114
87
-
On Linux and OS X, the output will contain instructions to add the EB CLI (and Python) executable file to the shell's `$PATH` variable, if it isn't already in it.
115
+
On Linux and macOS, the output contains instructions to add the EB CLI (and Python) executable file to the shell's `$PATH` variable, if it isn't already in it.
88
116
89
117
#### 2.5. Demo execution of `bundled_installer`
90
118
@@ -228,4 +256,4 @@ for testing purposes, even though the Elastic Beanstalk team tests the EB CLI ag
228
256
229
257
### 5. License
230
258
231
-
This library is licensed under the Mozilla Public License Version 2.0.
259
+
This library is licensed under the Mozilla Public License Version 2.0.
0 commit comments