Skip to content

Commit

Permalink
updated quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoohafkan committed Jul 31, 2019
1 parent f32db1d commit af95ab6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
10 changes: 9 additions & 1 deletion vignettes/_quickstart.rmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ vignette: >
This document gets you up and running with `hdfqlr`, an R interface to
[HDFql](http://www.hdfql.com/). In order to use this package, you will
need to [download HDFql](http://www.hdfql.com/#download) for your
system.
system.

If you are going to be using HDFql regularly, it's a good idea to set
a default HDFql directory for use with `hdfqlr`. You can do this
Expand All @@ -33,6 +33,14 @@ Otherwise, you can load the HDFql library after package start with
hql_load('path/to/hdfql-x.x.x')
```

If you are on a Linux system, you will need to update
the environment variable `LD_LIBRARY_PATH` to include the HDFql
directories prior to using the package:

```{bash, eval = FALSE}
export LD_LIBRARY_PATH=<hdfql_r_wrapper_directory>:<hdfql_lib_directory>:$LD_LIBRARY_PATH
```

The `hdfqlr` package relies on the R wrapper provided by HDFql.
Functions exported by the package are prefixed with `hql_` to
make it easy to differentiate them from the functions provided
Expand Down
13 changes: 11 additions & 2 deletions vignettes/quickstart.rmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Quick Start"
author: "Michael Koohafkan"
date: 2019-07-18
date: 2019-07-31
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{Quick Start}
Expand All @@ -12,7 +12,7 @@ vignette: >
This document gets you up and running with `hdfqlr`, an R interface to
[HDFql](http://www.hdfql.com/). In order to use this package, you will
need to [download HDFql](http://www.hdfql.com/#download) for your
system.
system.

If you are going to be using HDFql regularly, it's a good idea to set
a default HDFql directory for use with `hdfqlr`. You can do this
Expand All @@ -35,6 +35,15 @@ Otherwise, you can load the HDFql library after package start with
hql_load('path/to/hdfql-x.x.x')
```

If you are on a Linux system, you will need to update
the environment variable `LD_LIBRARY_PATH` to include the HDFql
directories prior to using the package:


```bash
export LD_LIBRARY_PATH=<hdfql_r_wrapper_directory>:<hdfql_lib_directory>:$LD_LIBRARY_PATH
```

The `hdfqlr` package relies on the R wrapper provided by HDFql.
Functions exported by the package are prefixed with `hql_` to
make it easy to differentiate them from the functions provided
Expand Down

0 comments on commit af95ab6

Please sign in to comment.