Skip to content

Commit

Permalink
Merge pull request #13 from datasnakes/readme-patch
Browse files Browse the repository at this point in the history
Quick fixes to readme.
  • Loading branch information
BrunoGrandePhD committed Oct 14, 2018
2 parents 2b74c20 + 07e3057 commit 1f865fb
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ A configurable installer CLI for installing R from source (sudo and non-sudo).
You can install the latest version of R into your home directory with a single short command.

```console
rinse
$ rinse
```

And rinse will keep you posted on the progress.

```
```console
Running: bash /tmp/tmpcphk7y1l/script.sh
Downloading R...
Extracting R...
Expand All @@ -25,7 +25,7 @@ Installing R...
If you're interested in installing a different version of R in a specific directory, you can do that too!

```console
rinse --version 3.4.2 --path ~/R-3.4.2
$ rinse --version 3.4.2 --path ~/R-3.4.2
```


Expand All @@ -35,21 +35,22 @@ Until we publish rinse as a Python package, you can install it locally using the

```console
# Install pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py --user
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python3 get-pip.py --user
# Install poetry
pip install --user poetry
$ pip install --user poetry
# Install rinse
wget https://github.com/datasnakes/rinse/archive/master.tar.gz
tar vxzf master.tar.gz
cd rinse-master
poetry install
poetry build -f wheel
pip install --user dist/rinse-0.1.0-py3-none-any.whl
$ wget https://github.com/datasnakes/rinse/archive/master.tar.gz
$ tar vxzf master.tar.gz
$ cd rinse-master
$ poetry install
$ poetry build -f wheel
$ pip install --user dist/rinse-0.1.0-py3-none-any.whl
```

## Maintainers

* Shaurita Hutchins
* Kristen Bystrom
* Rob Gilmore
* Bruno Grande
* Shaurita Hutchins

0 comments on commit 1f865fb

Please sign in to comment.