You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To activate them, you'll need to run these commands or add them to the end of your `.bash_profile`:
56
-
57
-
```sh
58
-
eval"$(rbenv init -)"
59
-
eval"$(pyenv init -)"
60
-
```
61
-
62
-
You can now use them to install specific versions of Ruby and Python and associate them with
63
-
the Spark home directory. Whenever you navigate to this directory or any of its subdirectories, these versions of Ruby and Python will be automatically activated.
64
-
65
-
```sh
66
-
rbenv install 2.7.0
67
-
pyenv install 3.7.6
68
-
69
-
cd /path/to/spark/root
70
-
rbenv local 2.7.0
71
-
pyenv local 3.7.6
72
-
```
42
+
Note: If you are on a system with both Ruby 1.9 and Ruby 2.0 you may need to replace gem with gem2.0.
73
43
74
44
### R Documentation
75
45
76
-
If you'd like to generate R documentation, you'll need to install R, [install Pandoc](https://pandoc.org/installing.html),
46
+
If you'd like to generate R documentation, you'll need to [install Pandoc](https://pandoc.org/installing.html)
77
47
and install these libraries:
78
48
79
49
```sh
@@ -88,7 +58,7 @@ Note: Other versions of roxygen2 might work in SparkR documentation generation b
88
58
To generate API docs for any language, you'll need to install these libraries:
0 commit comments