Template:Installation/RVM: Difference between revisions

From diaspora* project wiki
(Created page with "{{#vardefine:rubyversion|1.9.3-p429}} We recommend using [http://rvm.io Ruby Version Manager] it will ensure you're always on the currently recommended Ruby version and clean...")
 
(Set rubyversion to 2.7)
 
(74 intermediate revisions by 16 users not shown)
Line 1: Line 1:
{{#vardefine:rubyversion|1.9.3-p429}}
{{#vardefine:rubyversion|2.7}}


We recommend using [http://rvm.io Ruby Version Manager] it will ensure you're always on the currently recommended Ruby version and cleanly separate your Diaspora installation from all other Ruby applications on your machine. If you opt for not using it ensure your Ruby version is at least 1.9.2-p320, prior versions are incompatible. Be aware that his version is not maintained with security updates from the Ruby core team anymore. We do not support Ruby 2.0 yet. We currently recommend using {{#var:variablename}}.
=== RVM ===


== Installing RVM ==
We recommend using [http://rvm.io Ruby Version Manager] it will ensure you're always on the currently recommended Ruby version and cleanly separate your diaspora* installation from all other Ruby applications on your machine. If you opt for not using it ensure your Ruby version is at least 2.6.0, prior versions are incompatible. We currently recommend using the latest release of the {{#var:rubyversion}} series.


As the user you want to run Diaspora under, that is '''not as root''' run:
==== Install RVM ====
 
As the user you want to run diaspora* under, that is '''not''' as root, run:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
curl -L dspr.tk/1t | bash
curl -L https://s.diaspora.software/1t | bash
</syntaxhighlight>
</syntaxhighlight>


and follow the instructions.
and follow the instructions. If you get GPG signature problems, follow the instructions printed by the command. Running the 'gpg --recv-keys' command with 'sudo' should not be necessary. If those commands give you permission denied errors, change them to 640 for all files and 750 for all folders in the <tt>.gnupg</tt> folder.


== Setting up RVM ==
==== Set up RVM ====


Ensure the following line is in your <tt>~/.bashrc</tt>:
Ensure the following line is in your <tt>~/.bashrc</tt>:
Line 21: Line 23:
</syntaxhighlight>
</syntaxhighlight>


Ensure the currently recommend version of Ruby is installed:
Now run <tt>source ~/.bashrc</tt> in the terminal(s) you are using for this guide.


If you '''don't''' have sudo installed or your current user doesn't have the privileges to execute it, run:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
rvm install {{#var:variablename}}
rvm autolibs read-fail
</syntaxhighlight>
</syntaxhighlight>


The next command will check if all dependencies to build Ruby are installed. If these are not met, you will see a list of packages preceded by "<tt>Missing required packages:</tt>". As root install all the packages listed there for your OS. Then rerun the install command.
Ensure the currently recommend version of Ruby is installed:


== Installing Bundler into the global gemset ==
{{#tag:syntaxhighlight|
rvm install {{#var:rubyversion}}
|lang=bash}}


<syntaxhighlight lang="bash">
<noinclude>[[Category:Installation-Templates]]</noinclude>
rvm use {{#var:variablename}}@global
gem install bundler
</syntaxhighlight>

Latest revision as of 02:13, 1 August 2022


RVM

We recommend using Ruby Version Manager it will ensure you're always on the currently recommended Ruby version and cleanly separate your diaspora* installation from all other Ruby applications on your machine. If you opt for not using it ensure your Ruby version is at least 2.6.0, prior versions are incompatible. We currently recommend using the latest release of the 2.7 series.

Install RVM

As the user you want to run diaspora* under, that is not as root, run:

curl -L https://s.diaspora.software/1t | bash

and follow the instructions. If you get GPG signature problems, follow the instructions printed by the command. Running the 'gpg --recv-keys' command with 'sudo' should not be necessary. If those commands give you permission denied errors, change them to 640 for all files and 750 for all folders in the .gnupg folder.

Set up RVM

Ensure the following line is in your ~/.bashrc:

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"

Now run source ~/.bashrc in the terminal(s) you are using for this guide.

If you don't have sudo installed or your current user doesn't have the privileges to execute it, run:

rvm autolibs read-fail

The next command will check if all dependencies to build Ruby are installed. If these are not met, you will see a list of packages preceded by "Missing required packages:". As root install all the packages listed there for your OS. Then rerun the install command.

Ensure the currently recommend version of Ruby is installed:

rvm install 2.7