update install instructions
This commit is contained in:
parent
0a89fb1928
commit
b605630a9c
1 changed files with 24 additions and 10 deletions
32
INSTALL.md
32
INSTALL.md
|
@ -1,19 +1,33 @@
|
||||||
#### Installing lbrynet on Linux
|
#### Installing the LBRY app
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
The following packages are necessary (the following are their names on Ubuntu):
|
Installing LBRY is simple. You can get a dmg installer for OS X (Mavericks and up) or a .deb for linux [here](https://lbry.io/get).
|
||||||
libgmp3-dev build-essential python2.7 python2.7-dev python-pip
|
|
||||||
|
|
||||||
To install them on Ubuntu:
|
##### OS X
|
||||||
|
Just drag and drop LBRY.app into your applications folder (replacing any older versions). When it's running you'll have a LBRY icon in your status bar.
|
||||||
|
|
||||||
|
##### Linux
|
||||||
|
Double click the .deb file and follow the prompts. The app can be started by searching "LBRY", and it can be turned off by clicking the red 'x' in the browser interface.
|
||||||
|
|
||||||
|
On both systems you can also open the UI while the app is running by going to lbry://lbry in Firefox or Safari, or localhost:5279 in Chrome.
|
||||||
|
|
||||||
|
|
||||||
|
#### Installing LBRY command line
|
||||||
|
|
||||||
|
##### OS X
|
||||||
|
You can install LBRY command line by running `curl -sL https://rawgit.com/lbryio/lbry-setup/master/lbry_setup_osx.sh | sudo bash` in a terminal. This script will install lbrynet and its dependancies, as well as the app. You can start LBRY by either starting the app or by running `lbrynet-daemon` from a terminal.
|
||||||
|
|
||||||
|
##### Linux
|
||||||
|
On Ubuntu or Mint you can install the prerequisites and lbrynet by running
|
||||||
|
|
||||||
|
```
|
||||||
sudo apt-get install libgmp3-dev build-essential python2.7 python2.7-dev python-pip
|
sudo apt-get install libgmp3-dev build-essential python2.7 python2.7-dev python-pip
|
||||||
|
git clone https://github.com/lbryio/lbry.git
|
||||||
python setup.py build bdist_egg
|
cd lbry
|
||||||
sudo python setup.py install
|
sudo python setup.py install
|
||||||
```
|
```
|
||||||
|
|
||||||
this will install all of the libraries and a few applications
|
To start LBRY, run `lbrynet-daemon` in a terminal.
|
||||||
|
|
||||||
For running the file sharing application, see [RUNNING](RUNNING.md)
|
|
||||||
|
|
||||||
#### On windows:
|
#### On windows:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue