Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update README #20

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,18 @@ Currently, `okapi` provides functions to interface with two ODK-based systems: [

## Installation

<!---
You can install `okapi` from [CRAN](https://cran.r-project.org):
`okapi` is not yet available on [CRAN](https://cran.r-project.org).

```{r install_cran, eval = FALSE}
install.packages("okapi")
```
--->

You can install the development version of `okapi` from [GitHub](https://github.com/rapidsurveys/okapi) with:
You can install `okapi` from the [RapidSurveys R Universe](https://rapidsurveys.r-universe.dev) with:

```{r install_github, eval = FALSE}
if(!require(remotes)) install.packages("remotes")
remotes::install_github("rapidsurveys/okapi")
```{r install, echo = TRUE, eval = FALSE}
install.packages(
"okapi",
repos = c(
'https://rapidsurveys.r-universe.dev',
'https://cloud.r-project.org'
)
)
```

## Usage
Expand Down
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,19 @@ current set of functions perform the following tasks:

## Installation

<!---
You can install `okapi` from [CRAN](https://cran.r-project.org):
&#10;
```r
install.packages("okapi")
```
--->
`okapi` is not yet available on [CRAN](https://cran.r-project.org).

You can install the development version of `okapi` from
[GitHub](https://github.com/rapidsurveys/okapi) with:
You can install `okapi` from the [RapidSurveys R
Universe](https://rapidsurveys.r-universe.dev) with:

``` r
if(!require(remotes)) install.packages("remotes")
remotes::install_github("rapidsurveys/okapi")
install.packages(
"okapi",
repos = c(
'https://rapidsurveys.r-universe.dev',
'https://cloud.r-project.org'
)
)
```

## Usage
Expand Down