Skip to content

Commit dc1d85f

Browse files
committed
Assorted updates
1 parent baa344e commit dc1d85f

File tree

3 files changed

+11
-654
lines changed

3 files changed

+11
-654
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Package: cross_language_projects
1+
Package: crosslanguageprojects
22
Title: What the Package Does (One Line, Title Case)
33
Version: 0.0.0.9000
44
Authors@R:

index.qmd

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35,34 +35,31 @@ gh repo create # create the repo on github
3535

3636
```{r}
3737
#| eval: false
38-
# Take snapshot with renv:
39-
renv::snapshot()
38+
# Install R dependencies:
39+
remotes::install_github("robinlovelace/cross_language_projects")
4040
```
4141

42-
Load the renv with this (also in .Rprofile):
42+
Install Python and necessary Python packages if not already installed with:
4343

4444
```{r}
45-
# source("renv/activate.R")
45+
#| eval: false
46+
reticulate::install_python()
4647
```
4748

4849
```{r}
49-
# make renv pick-up rmarkdown dep:
50-
install.packages("rmarkdown")
51-
library(rmarkdown)
52-
library(knitr)
50+
reticulate::py_install("geopandas")
51+
reticulate::py_install("matplotlib")
5352
```
5453

55-
Install Python packages with:
54+
Install Julia if not already installed:
5655

57-
```{r}
58-
reticulate::py_install("geopandas")
59-
reticulate::py_install("matplotlib")
56+
```bash
57+
curl -fsSL https://install.julialang.org | sh
6058
```
6159

6260
Activate the Julia environment:
6361

6462
```{julia}
65-
#| echo: false
6663
using Pkg
6764
Pkg.activate(".")
6865
Pkg.instantiate()

0 commit comments

Comments
 (0)