mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 23:34:47 -05:00
parent
a71305b4fe
commit
0b50c698ad
1 changed files with 11 additions and 0 deletions
|
@ -129,9 +129,20 @@ deno run https://deno.land/welcome.ts
|
||||||
|
|
||||||
### Build from source
|
### Build from source
|
||||||
|
|
||||||
|
Clone on Unix/MacOs
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Fetch deps.
|
# Fetch deps.
|
||||||
git clone --recurse-submodules https://github.com/denoland/deno.git
|
git clone --recurse-submodules https://github.com/denoland/deno.git
|
||||||
|
```
|
||||||
|
|
||||||
|
Clone on Windows (with Admin privileges)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone -c core.symlinks=true --recurse-submodules https://github.com/denoland/deno.git
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
cd deno
|
cd deno
|
||||||
./tools/setup.py
|
./tools/setup.py
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue