Remove the setup instruction from the readme

This commit is contained in:
Fabian Affolter 2016-11-02 11:12:02 +01:00
parent b2083dea00
commit ed48c65a4f
No known key found for this signature in database
GPG key ID: DDF3D6F44AAB1336
2 changed files with 5 additions and 23 deletions

View file

@ -14,23 +14,3 @@ In order to make the preview available on [http://127.0.0.1:4000](http://127.0.0
$ rake preview
```
### Setup on Fedora and CentOS
On Fedora 22 and later or CentOS 7.1.1503, Ruby is not available by default. Please take the notes here as a little guide for the Ruby installation process.
```bash
$ curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
$ curl -L get.rvm.io | bash -s stable
$ source ~/.profile
$ rvm requirements
$ rvm install ruby-2.2.3
$ rvm use ruby-2.2.3 --default
$ ruby -v
```
The last command will give you something like this `ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-linux]`. Then install `bundler`.
```bash
$ gem install bundler
```
Now you can follow the [setup instructions](https://home-assistant.io/developers/website/).