Skip to content

Commit 0fed1d4

Browse files
committed
Update install instructions to build from source
1 parent 3acf48c commit 0fed1d4

File tree

1 file changed

+25
-23
lines changed

1 file changed

+25
-23
lines changed

docs/pages/cdp/cdp-Installation.md

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,36 @@ folder: cdp
99
toc: false
1010
---
1111

12-
1. Install [Node.js V8.0](https://nodejs.org/en/download/) or later, and Node Package Manager (npm) V5.0 or later, that are required by Zowe CLI. To verify the versions installed:
12+
1. Install Node.js V8.0 or later, and Node Package Manager (npm) V5.0 or later, that are required by Zowe CLI. Installers are available from Node.js [Downloads](https://nodejs.org/en/download/).
1313

14-
```console
15-
node --version
16-
npm --version
17-
```
14+
To verify the versions installed:
1815

19-
2. Install [Zowe CLI](https://zowe.github.io/docs-site/latest/user-guide/cli-installcli.html). For example to install using npm:
20-
21-
```console
22-
npm install -g zowe-cli
23-
```
16+
```console
17+
node --version
18+
npm --version
19+
```
2420

25-
3. Install the cics-deploy plugin:
21+
2. Install [Zowe CLI](https://zowe.github.io/docs-site/latest/user-guide/cli-installcli.html). For example to install using npm:
2622

27-
```console
28-
zowe plugins install zowe-cli-cics-deploy-plugin
29-
```
23+
```console
24+
sudo npm install -g @zowe/cli
25+
```
3026

31-
4. Verify the version of the plugin that is installed:
27+
3. Build and install the cics-deploy plugin as described in [Setting up your development environment](https://github.com/IBM/zowe-cli-cics-deploy-plugin/blob/master/docs-internal/tutorials/Setup.md). For example:
3228

33-
```console
34-
zowe plugins list
35-
```
29+
```console
30+
mkdir ~/cics-deploy
31+
rm -Rf *
32+
cd ~/cics-deploy
33+
git clone https://github.com/IBM/zowe-cli-cics-deploy-plugin
34+
cd zowe-cli-cics-deploy-plugin
35+
npm install
36+
npm run build
37+
zowe plugins install .
38+
```
3639

37-
### Update the cics-deploy plugin
40+
4. Verify the the plugin is installed:
3841

39-
To update to the latest version of the plugin:
40-
```console
41-
zowe plugins update zowe-cli-cics-deploy-plugin
42-
```
42+
```console
43+
zowe plugins list
44+
```

0 commit comments

Comments
 (0)