Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lecy committed Jul 11, 2023
1 parent 2c7ed60 commit 2cb9801
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ An R package to assign raw nonprofit executive titles from Form 990 Part VII to
devtools::install_github( 'nonprofit-open-data-collective/titleclassifier' )
```

If you get the following error message:

```
Error in utils::download.file( ...
: download from 'https://api.github.com/repos/nonprofit-open-data-collective/titleclassifier/tarball/HEAD' failed
```

Try changing the default file download options before installing:

```r
options( download.file.method = "wininet" ) # for windows
options( download.file.method = "libcurl" ) # for all op systems
devtools::install_github( 'nonprofit-open-data-collective/titleclassifier' )
```


```r
library( titleclassifier )
Expand Down

0 comments on commit 2cb9801

Please sign in to comment.