Skip to content

Commit

Permalink
update README for Windows users
Browse files Browse the repository at this point in the history
  • Loading branch information
terasakisatoshi committed May 15, 2021
1 parent aa50a8b commit f15ef12
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ $ docker run --rm -it julia
# some staff happens ...
```

- It will initialize the fresh Julia environment even if you do not have a Julia on your (host) machine.
- It will initialize a fresh Julia environment even if you do not have a Julia on your (host) machine.

## Buiding Docker image

Expand All @@ -137,6 +137,25 @@ $ docker-compose build
$ docker-compose run --rm julia julia --project=/work -e 'using Pkg; Pkg.instantiate()'
```

### Tips for Windows Users

- You can install `make` command via [winget](https://github.com/microsoft/winget-cli).

```ps
PS> # open powershell NOT `cmd.exe`
PS> winget install "Make for Windows" # install `make` command
PS> make
```

- Or try the following procedure:

```ps
PS> Remove-Item -Path Manifest.toml -ErrorAction Ignore
PS> docker build -t myworkflowjl .
PS> docker-compose build
PS> docker-compose run --rm julia julia --project=/work -e 'using Pkg; Pkg.instantiate()'
```

## Pull Docker image (Optional)

- Running `make build` may take much time to build our Docker image. Please use `make pull` instead.
Expand Down

0 comments on commit f15ef12

Please sign in to comment.