diff --git a/README.Rmd b/README.Rmd index 1f8e3bb..4ed5d1a 100644 --- a/README.Rmd +++ b/README.Rmd @@ -32,16 +32,22 @@ You can install the development version of `rollama` from [GitHub](https://githu ``` r # install.packages("remotes") -remotes::install_github("JBGruber/`rollama`") +remotes::install_github("JBGruber/rollama") ``` The easiest way to get Ollama itself up and running is through [Docker](https://docs.docker.com/desktop/). -From the command line interface, you can start Ollama locally with one command: +From the command line interface, you can start Ollama locally with one command (add `sudo` if `permission denied`): ``` docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama ``` +After restarting, you can run Ollama again with the command (add `sudo` if `permission denied`): +``` +docker start ollama +``` + + ## Example The first thing you should do after installation is to pull one of the models from . diff --git a/README.md b/README.md index e462a09..49752ab 100644 --- a/README.md +++ b/README.md @@ -22,15 +22,20 @@ You can install the development version of `rollama` from ``` r # install.packages("remotes") -remotes::install_github("JBGruber/`rollama`") +remotes::install_github("JBGruber/rollama") ``` The easiest way to get Ollama itself up and running is through [Docker](https://docs.docker.com/desktop/). From the command line -interface, you can start Ollama locally with one command: +interface, you can start Ollama locally with one command (add `sudo` if `permission denied`):: docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama +After restarting, you can run Ollama again with the command (add `sudo` if `permission denied`): + + docker start ollama + + ## Example The first thing you should do after installation is to pull one of the