Skip to content

Commit

Permalink
Update preview_install_guide.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonRShaver authored Oct 17, 2016
1 parent 192241b commit 3ecdea0
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions doc/preview_install_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,16 +183,29 @@ docker run -it azuresdk/azure-cli-python:latest bash`

The CLI is available for Windows though PIP using the steps below. If you do not have Python/PIP installed, consider using [Docker](#docker) to access the CLI.

Run the following from a command prompt
#### Step 1: Install Python 3.5.x

Visit the Python site and [download Python 3.5](https://www.python.org/downloads/release/python-352/) for your OS.
> **NOTE**: We recommend checking the "Add Python 3.5 to PATH" option during install.
Once the install is complete, if you open a new command prompt, you should test your Python installation:

```shell
C:\temp> python --version
Python 3.5.2
```

#### Step 2: Install Azure CLI using PIP

Run the following from a command prompt to install the Azure CLI 2.0 using the Python package manager, PIP:

```shell
pip install azure-cli
C:\temp> pip install azure-cli
```

Run the CLI
And after the installation complete, you can run the Azure CLI 2.0 from the command prompt:

```shell
az
C:\temp> az
```

Installation Troubleshooting
Expand Down

0 comments on commit 3ecdea0

Please sign in to comment.