Simplifies Linux installation instructions by using install(1)

Makes documentation easier to read on narrower screens, and makes the command-line less scary looking. Leaves deletion of the downloaded file as an exercise for the reader. It's typically not done in installation instructions.

Instructions still assume x86-64 architecture, which is the common case, but less than ideal.
pull/3118/head
Thomas Strömberg 2018-09-05 11:48:57 -07:00 committed by GitHub
parent 82e991456e
commit 4bcd857b07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -26,8 +26,10 @@ brew cask install minikube
```
### Linux
```shell
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo cp minikube /usr/local/bin/ && rm minikube
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& sudo install minikube-linux-amd64 /usr/local/bin/minikube
```
### Windows