- Kubernetes for Serverless Applications
- Russ McKendrick
- 212字
- 2021-07-02 19:16:49
Windows 10 Professional
Similarly to how we installed Minikube on macOS, we will be using a package manager; this time it is called Chocolatey.
Chocolatey is a package manager for Windows, similar to Homebrew on macOS. It enables you to install software from the command line, and supports both PowerShell and cmd.exe. We will be using PowerShell.
If you do not have Chocolatey installed, you can run the following command in a PowerShell console that has been launched with administrator privileges:
The following command is a single line and not multiple lines. Also, as we are running the install command using Set-ExecutionPolicy Bypass, you will be asked if you are sure. As we are running the script directly from the Chocolatey site over HTTPS, you should be able to trust the script and answer yes.
$ Set-ExecutionPolicy Bypass; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Once Chocolatey is installed, you can install Minikube by running:
$ choco install minikube
This will download and install the dependencies, and then install Minikube. When you are asked to confirm if you would like to run the script, respond with yes:

Once installed, you will be able to run the following command:
$ minikube version
This will return the version of Minikube installed; for me, this was v0.22.2.
- 大數據戰爭:人工智能時代不能不說的事
- 樂高機器人EV3設計指南:創造者的搭建邏輯
- 影視后期制作(Avid Media Composer 5.0)
- Learning Apache Cassandra(Second Edition)
- 空間傳感器網絡復雜區域智能監測技術
- 工業機器人入門實用教程(KUKA機器人)
- 小型電動機實用設計手冊
- 工業機器人操作與編程
- 運動控制系統應用與實踐
- Applied Data Visualization with R and ggplot2
- MATLAB-Simulink系統仿真超級學習手冊
- 大數據案例精析
- 設計模式
- 實戰Windows Azure
- fastText Quick Start Guide