Skip to content

Commit 16d4e86

Browse files
committed
Changing mssqlctl install for CTP 2.4
1 parent 1d17733 commit 16d4e86

2 files changed

Lines changed: 13 additions & 8 deletions

File tree

docs/big-data-cluster/deploy-install-mssqlctl.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,21 @@ This article describes how to install the **mssqlctl** tool on Windows or Linux.
3232
1. If you have any previous releases of **mssqlctl** installed, it is important to uninstall **mssqlctl** first before installing the latest version.
3333

3434
If you are unisntalling mssqlctl corresponding to CTP version 2.2 or lower run:
35+
3536
```powershell
3637
pip3 uninstall mssqlctl
3738
```
38-
39-
For CTP2.3 or higher run:
39+
40+
For CTP2.3 or higher run (replace `ctp-2.3` in the command with the version of mssqlctl you are uninstalling):
41+
4042
```powershell
4143
pip3 uninstall -r https://private-repo.microsoft.com/python/ctp-2.3/mssqlctl/requirements.txt
4244
```
45+
4346
1. Install **mssqlctl** with the following command:
4447

4548
```powershell
46-
pip3 install -r https://private-repo.microsoft.com/python/ctp-2.3/mssqlctl/requirements.txt
49+
pip3 install -r https://private-repo.microsoft.com/python/ctp-2.4/mssqlctl/requirements.txt
4750
```
4851

4952
## <a id="linux"></a> Linux mssqlctl installation
@@ -67,19 +70,21 @@ On Linux, you must install Python 3.5 and then upgrade pip. The following exampl
6770
1. If you have any previous releases of **mssqlctl** installed, it is important to uninstall **mssqlctl** first before installing the latest version.
6871

6972
If you are unisntalling mssqlctl corresponding to CTP version 2.2 or lower run:
73+
7074
```bash
7175
pip3 uninstall mssqlctl
7276
```
73-
74-
For CTP2.3 or higher run:
77+
78+
For CTP2.3 or higher run (replace `ctp-2.3` in the command with the version of mssqlctl you are uninstalling):
79+
7580
```bash
7681
pip3 uninstall -r https://private-repo.microsoft.com/python/ctp-2.3/mssqlctl/requirements.txt
7782
```
7883

7984
1. Install **mssqlctl** with the following command:
8085

8186
```bash
82-
pip3 install -r https://private-repo.microsoft.com/python/ctp-2.3/mssqlctl/requirements.txt --user
87+
pip3 install -r https://private-repo.microsoft.com/python/ctp-2.4/mssqlctl/requirements.txt --user
8388
```
8489

8590
> [!NOTE]

docs/big-data-cluster/deployment-guidance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,13 +273,13 @@ Currently, the only way to upgrade a big data cluster to a new release is to man
273273
**Windows:**
274274

275275
```powershell
276-
pip3 install -r https://private-repo.microsoft.com/python/ctp-2.3/mssqlctl/requirements.txt
276+
pip3 install -r https://private-repo.microsoft.com/python/ctp-2.4/mssqlctl/requirements.txt
277277
```
278278

279279
**Linux:**
280280

281281
```bash
282-
pip3 install -r https://private-repo.microsoft.com/python/ctp-2.3/mssqlctl/requirements.txt --user
282+
pip3 install -r https://private-repo.microsoft.com/python/ctp-2.4/mssqlctl/requirements.txt --user
283283
```
284284

285285
> [!IMPORTANT]

0 commit comments

Comments
 (0)