-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Python installation instructions for using rdataretriever
- Loading branch information
1 parent
97ca635
commit 3669135
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
## Installing Python | ||
|
||
* Go to https://www.python.org/downloads | ||
* Click the yellow `Download Python` button | ||
* Start the installer | ||
* Click "Add Python 3.7 to PATH" then "Install Now" | ||
|
||
* Go to https://conda.io/miniconda.html | ||
* Download the installer for your operating system | ||
* Run the installer | ||
* Keep all defaults | ||
* | ||
* Open RStudio | ||
|
||
``` | ||
install.packages('reticulate') | ||
library('reticulate') | ||
py_install('retriever') | ||
install.packages('rdataretriever') | ||
``` | ||
|
||
``` | ||
use_condaenv('r-reticulate') | ||
library(rdataretriever) | ||
``` |