File tree Expand file tree Collapse file tree 3 files changed +11
-654
lines changed Expand file tree Collapse file tree 3 files changed +11
-654
lines changed Original file line number Diff line number Diff line change 1- Package: cross_language_projects 
1+ Package: crosslanguageprojects 
22Title: What the Package Does (One Line, Title Case)
33Version: 0.0.0.9000
44Authors@R: 
Original file line number Diff line number Diff 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
6260Activate the Julia environment:
6361
6462``` {julia} 
65- #| echo: false 
6663using Pkg 
6764Pkg.activate(".") 
6865Pkg.instantiate() 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments