Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
fether
Commits
36ece818
Commit
36ece818
authored
Feb 25, 2019
by
Luke Schoen
Browse files
docs: Add instructions on dependencies to install
parent
38d8add6
Pipeline
#31657
passed with stage
in 1 minute and 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
36ece818
...
...
@@ -25,6 +25,44 @@ If you run into problems while using Parity Fether, feel free to file an issue i

## Install dependencies
### MacOS
Install Xcode Command Line Tools, NVM, Node.js latest LTS, Yarn, and Git
```
bash
xcode-select
--install
;
curl
-o-
https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
;
export
NVM_DIR
=
"
$HOME
/.nvm"
[
-s
"
$NVM_DIR
/nvm.sh"
]
&&
\.
"
$NVM_DIR
/nvm.sh"
# This loads nvm
[
-s
"
$NVM_DIR
/bash_completion"
]
&&
\.
"
$NVM_DIR
/bash_completion"
# This loads nvm bash_completion
echo
-e
"Installing Node.js latest LTS version"
;
nvm
install
--lts
echo
-e
"Switching to use Node.js latest LTS version"
;
nvm use
--lts
;
brew
install
yarn
--without-node
;
brew
install
git
--verbose
;
brew upgrade git
--verbose
;
```
### Linux and Windows (Git Bash)
Install Node.js 10.x, Yarn, Git, and increase amount of inotify watchers
```
bash
sudo
apt update
;
sudo
apt
install
-y
git nodejs npm curl
;
curl
-sL
https://deb.nodesource.com/setup_10.x |
sudo
-E
bash -
;
apt-get
install
-y
nodejs
;
sudo ln
-s
/usr/bin/nodejs /usr/bin/node
;
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-get update
&&
sudo
apt-get
install
yarn
;
sudo ln
-s
/usr/bin/yarn /usr/local/bin/yarn
;
```
## Install and start Parity Fether
### Linux
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment