-
Notifications
You must be signed in to change notification settings - Fork 49
/
install-go-cli.html.md.erb
153 lines (80 loc) · 5.31 KB
/
install-go-cli.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
---
title: Installing the cf CLI
owner: CLI
---
The Cloud Foundry Command Line Interface (cf CLI) is the official command line client for Cloud Foundry. Use the cf CLI to interact with Cloud Foundry applications
and services.
The following procedures describe how to install the cf CLI on your operating system. You can install the cf CLI with a package manager, an installer, or a compressed binary.
For more information about how to use the cf CLI, see [Getting Started with cf CLI](getting-started.html).
To learn when cf CLI updates are released and to download a new binary or installer, see [Releases](https://github.com/cloudfoundry/cli/releases) in the Cloud Foundry CLI repository on GitHub.
There are currently two major versions of the cf CLI: v7 and v8. See [the README](https://github.com/cloudfoundry/cli/blob/master/README.md) to decide which version to use.
## <a id="prerequisites"></a> Prerequisites
If you have previously used the cf CLI Ruby gem, you must uninstall it before installing the cf CLI.
To uninstall the gem:
1. Run:
gem uninstall cf
1. Verify that your Ruby environment manager uninstalled the gem by closing and reopening your terminal.
## <a id="pkg"></a> Install the cf CLI using a package manager
These sections describe how to install the cf CLI using a package manager. You can install the cf CLI using a package manager on macOS X and Linux operating systems.
### <a id='pkg-linux'></a> Linux installation
There are two ways to install the cf CLI using a package manager, depending on your Linux distribution.
To install the cf CLI on Debian and Ubuntu-based Linux distributions:
1. Add the Cloud Foundry Foundation public key and package repository to your system by running:
wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo gpg --dearmor -o /usr/share/keyrings/cli.cloudfoundry.org.gpg
echo "deb [signed-by=/usr/share/keyrings/cli.cloudfoundry.org.gpg] https://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list
1. Update your local package index by running:
sudo apt-get update
1. To install **cf CLI v7**, run:
sudo apt-get install cf7-cli
1. To install **cf CLI v8**, run:
sudo apt-get install cf8-cli
To install the cf CLI on Enterprise Linux and Fedora RHEL6/CentOS6 and later distributions:
1. Configure the Cloud Foundry Foundation package repository by running:
sudo wget -O /etc/yum.repos.d/cloudfoundry-cli.repo https://packages.cloudfoundry.org/fedora/cloudfoundry-cli.repo
1. To install **cf CLI v7**, run:
sudo yum install cf7-cli
1. To install **cf CLI v8**, run:
sudo yum install cf8-cli
This also downloads and adds the public key to your system.
### <a id='pkg-mac'></a> macOS X installation
You can install the cf CLI on macOS X operating systems using the Homebrew package manager.
To install the cf CLI for macOS X using Homebrew:
1. Install Homebrew. For instructions, see [Install Homebrew](http://brew.sh/) on the Homebrew website.
1. To install **cf CLI v7**, run:
brew install cloudfoundry/tap/cf-cli@7
1. To install **cf CLI v8**, run:
brew install cloudfoundry/tap/cf-cli@8
<% if vars.platform_code != 'CF' %>
<%= partial "/pcf/core/cf_cli_installer" %>
<% else %>
<% end %>
## <a id="bin"></a> Install the cf CLI using a compressed binary
You can install the cf CLI using a compressed binary on Windows, macOS X, and Linux operating systems.
This method can be a more secure option compared to installing from a repository, especially in environments where security is a primary concern.
<p class="note">
As of cf CLI 8.4.0 and cf CLI 7.5.0, the Apple ARM architecture is now supported for installation of cf CLI. This is possible on newer MACs that use M1 and M2 processors. For systems running the M1 processor, cf CLI can now be installed without use of an emulator.
</p>
For more information about downloading and installing a compressed binary for cf CLI v7 or cf CLI v8, see [Installers and compressed binaries](https://github.com/cloudfoundry/cli/wiki/V8-CLI-Installation-Guide#installers-and-compressed-binaries).
## <a id="verify"></a> Verify installation
To verify the installation of the cf CLI:
1. Close and reopen the command prompt, or open a new tab in the command prompt terminal.
1. Run:
cf --help
If your installation was successful, the cf CLI help listing appears.
## <a id="uninstall"></a> Uninstall the cf CLI
These sections describe how to uninstall the cf CLI. The method for uninstalling the cf CLI differs depending on the installation method.
### <a id="uninstall-pkg"></a> Package manager
If you installed the cf CLI with a package manager, follow the instructions specific to your package manager.
### <a id="uninstall-installer"></a> Installer
If you installed the cf CLI with an installer, follow the procedure in this section that is specific to your operating system.
To uninstall the cf CLI on macOS X:
1. Delete the binary `/usr/local/bin/cf`.
1. Delete the directory `/usr/local/share/doc/cf-cli`.
To uninstall the cf CLI on Windows:
1. Go to the **Control Panel** and click **Programs and Features**.
1. Select **Cloud Foundry CLI VERSION**.
1. Click **Uninstall**.
### <a id="uninstall-binary"></a> Binary
To uninstall the cf CLI after installing it with a binary:
1. Go to the location where you copied the binary.
1. Delete the binary.