Skip to content

Commit

Permalink
Easy install micro on windows using Scoop (#1953)
Browse files Browse the repository at this point in the history
* Easy install micro on windows using Scoop

* Update README.md

* Update README.md
  • Loading branch information
a0v0 committed Jul 1, 2022
1 parent 0747aeb commit d52a49f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,23 @@ go install github.com/micro/micro/v3@latest

### Install Binaries

Windows
#### Windows
Using Scoop
```sh
scoop bucket add micro-cli https://github.com/micro/micro.git
```
```sh
scoop install micro-cli
```
Using powershell
```sh
powershell -Command "iwr -useb https://raw.githubusercontent.com/micro/micro/master/scripts/install.ps1 | iex"
```
Linux
#### Linux
```sh
wget -q https://raw.githubusercontent.com/micro/micro/master/scripts/install.sh -O - | /bin/bash
```
MacOS
#### MacOS
```sh
curl -fsSL https://raw.githubusercontent.com/micro/micro/master/scripts/install.sh | /bin/bash
```
Expand Down
15 changes: 15 additions & 0 deletions microcli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "3.11.0",
"architecture": {
"64bit": {
"url": "https://github.com/micro/micro/releases/download/v3.11.0/micro-v3.11.0-windows-amd64.zip",
"bin": [
"micro.exe"
],
"hash": "08b52adf73f6eec63853cc760f42bc5b7eec15b02744e185eeb2c35e8808b374"
}
},
"homepage": "https://micro.dev",
"license": "Apache-2.0",
"description": "Micro CLI for Micro Platform"
}

0 comments on commit d52a49f

Please sign in to comment.