Skip to content

Commit e0df899

Browse files
authored
Merge pull request #3 from eddelbuettel/master
add note about adjusting PATH
2 parents 4c15108 + 5cece4c commit e0df899

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tutorial-installation.md

+9
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@ pip3 install -U jupyter
4141

4242
Install the IRkernel binary in R. More info [here](https://irkernel.github.io/installation/).
4343

44+
Note that `pip` or `pip3` may have installed Jupyter to a local directory which you
45+
need to make visible to R. One option is to adjust `PATH` before calling `R`:
46+
47+
```sh
48+
PATH="~/.local/bin/:$PATH" R
49+
```
50+
51+
With R started that way, run these commands:
52+
4453
```r
4554
install.packages(c('repr', 'pbdZMQ', 'devtools'), repos = c(CRAN = "https://cran.rstudio.com"))
4655
library(devtools)

0 commit comments

Comments
 (0)