mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
21 lines
566 B
Plaintext
21 lines
566 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * cli_reference/openshift_developer_cli/installing-odo.adoc
|
|
|
|
[id="installing-odo-on-macos"]
|
|
|
|
= Installing {odo-title} on macOS
|
|
|
|
== Binary installation
|
|
|
|
----
|
|
# curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-darwin-amd64 -o /usr/local/bin/odo
|
|
# chmod +x /usr/local/bin/odo
|
|
----
|
|
|
|
== Tarball installation
|
|
|
|
----
|
|
# sh -c 'curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-darwin-amd64.tar.gz | gzip -d > /usr/local/bin/odo'
|
|
# chmod +x /usr/local/bin/odo
|
|
---- |