mirror of
https://github.com/danbulant/deno_install
synced 2026-07-09 05:00:54 +00:00
Add documents to manage multiple versions on Windows with Scoop (#91)
This commit is contained in:
parent
654d0ea309
commit
7bdb161ab5
1 changed files with 13 additions and 0 deletions
13
README.md
13
README.md
|
|
@ -68,6 +68,19 @@ asdf global deno 0.2.10
|
||||||
asdf local deno 0.2.10
|
asdf local deno 0.2.10
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**With [Scoop](https://github.com/lukesampson/scoop/wiki/Switching-Ruby-And-Python-Versions):**
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Install a specific version of deno:
|
||||||
|
scoop install deno@0.22.0
|
||||||
|
|
||||||
|
# Switch to v0.22.0
|
||||||
|
scoop reset deno@0.22.0
|
||||||
|
|
||||||
|
# Switch to the latest version
|
||||||
|
scoop reset deno
|
||||||
|
```
|
||||||
|
|
||||||
## Environment Variables
|
## Environment Variables
|
||||||
|
|
||||||
- `DENO_INSTALL` - The directory in which to install Deno. On Linux, this defaults to `$HOME/.local`.
|
- `DENO_INSTALL` - The directory in which to install Deno. On Linux, this defaults to `$HOME/.local`.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue