Commit 6e7406ac authored by Alexandre Delanoë's avatar Alexandre Delanoë

[DOC] README install on Debian

parent 8eada151
...@@ -44,6 +44,32 @@ brew install node yarn ...@@ -44,6 +44,32 @@ brew install node yarn
### Installing dependencies ### Installing dependencies
#### Debian
##### Testing Distribution and above
```shell
sudo apt update && sudo apt install nodejs yarn
```
##### Stable Distribution
```shell
curl -sL https://deb.nodesource.com/setup_11.x | sudo bash -
sudo apt update && sudo apt install nodejs
```
```shell
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt install yarn
```
### OSX
```shell
brew install node yarn
```
### Installing dependencies
Before building gargantext, you must install the dependencies. We use Before building gargantext, you must install the dependencies. We use
[yarn](https://yarnpkg.com/en/) for this. They have excellent [yarn](https://yarnpkg.com/en/) for this. They have excellent
[installation instructions](https://yarnpkg.com/en/docs/install). [installation instructions](https://yarnpkg.com/en/docs/install).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment