Skip to content

Commit

Permalink
install nix first for quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Baumann committed Sep 17, 2023
1 parent 2b0853a commit 9892670
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
8 changes: 8 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ for example check out
[series 4 on nix for data science on Bruno's blog](https://www.brodrigues.co/blog/2023-08-12-nix_for_r_part4/).
Or, in case you like video tutorials, watch
[this one on Reproducible R development environments with Nix](https://www.youtube.com/watch?v=c1LhgeTTxaI).

First install Nix on your system:

```{sh, eval=FALSE}
curl --proto '=https' --tlsv1.2 -sSf \
-L https://install.determinate.systems/nix | \
sh -s -- install
```
If you have R installed, you can start straight away from your R session.

```{r, eval=FALSE}
Expand Down
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,18 @@ Bruno’s
blog](https://www.brodrigues.co/blog/2023-08-12-nix_for_r_part4/). Or,
in case you like video tutorials, watch [this one on Reproducible R
development environments with
Nix](https://www.youtube.com/watch?v=c1LhgeTTxaI). If you have R
installed, you can start straight away from your R session.
Nix](https://www.youtube.com/watch?v=c1LhgeTTxaI).

First install Nix on your system:

``` sh
curl --proto '=https' --tlsv1.2 -sSf \
-L https://install.determinate.systems/nix | \
sh -s -- install
```

If you have R installed, you can start straight away from your R
session.

``` r
install.packages("rix", repos = c("https://b-rodrigues.r-universe.dev",
Expand Down

0 comments on commit 9892670

Please sign in to comment.