// Module included in the following assemblies: // // * cli_reference/developer_cli_odo/installing-odo.adoc [id="installing-odo-on-linux_{context}"] = Installing {odo-title} on Linux == Binary installation .Procedure . Obtain the binary: + [source,terminal] ---- # curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-linux-amd64 -o /usr/local/bin/odo ---- . Change the permissions on the file: + [source,terminal] ---- # chmod +x /usr/local/bin/odo ---- == Tarball installation .Procedure . Obtain the tarball: + [source,terminal] ---- # sh -c 'curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-linux-amd64.tar.gz | gzip -d > /usr/local/bin/odo' ---- . Change the permissions on the file: + [source,terminal] ---- # chmod +x /usr/local/bin/odo ----