Merge branch 'docsupdate' into development
This commit is contained in:
commit
6ad203f767
5 changed files with 55 additions and 80 deletions
38
INSTALL.md
38
INSTALL.md
|
@ -1,38 +1,14 @@
|
||||||
Prerequisites
|
#### Installing lbrynet on Linux
|
||||||
-------------
|
|
||||||
|
|
||||||
To use the LBRYWallet, which enables spending and accepting LBRYcrds in exchange for data, the
|
|
||||||
LBRYcrd application (insert link to LBRYcrd website here) must be installed and running. If
|
|
||||||
this is not desired, the testing client can be used to simulate trading points, which is
|
|
||||||
built into LBRYnet.
|
|
||||||
|
|
||||||
on Ubuntu:
|
|
||||||
|
|
||||||
```
|
|
||||||
sudo apt-get install libgmp3-dev build-essential python-dev python-pip
|
|
||||||
```
|
|
||||||
|
|
||||||
Getting the source
|
|
||||||
------------------
|
|
||||||
|
|
||||||
Don't you already have it?
|
|
||||||
|
|
||||||
Setting up the environment
|
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
It's recommended that you use a virtualenv
|
The following packages are necessary (the following are their names on Ubuntu):
|
||||||
|
libgmp3-dev build-essential python2.7 python2.7-dev python-pip
|
||||||
|
|
||||||
```
|
To install them on Ubuntu:
|
||||||
sudo apt-get install python-virtualenv
|
sudo apt-get install libgmp3-dev build-essential python2.7 python2.7-dev python-pip
|
||||||
cd <source base directory>
|
|
||||||
virtualenv .
|
|
||||||
source bin/activate
|
|
||||||
```
|
|
||||||
|
|
||||||
(to deactivate the virtualenv, enter 'deactivate')
|
python setup.py build bdist_egg
|
||||||
|
sudo python setup.py install
|
||||||
```
|
|
||||||
python setup.py install
|
|
||||||
```
|
```
|
||||||
|
|
||||||
this will install all of the libraries and a few applications
|
this will install all of the libraries and a few applications
|
||||||
|
|
|
@ -37,7 +37,7 @@ See [INSTALL](INSTALL.md)
|
||||||
## Developers
|
## Developers
|
||||||
|
|
||||||
Documentation: doc.lbry.io
|
Documentation: doc.lbry.io
|
||||||
Source code: trac.lbry.io/browser
|
Source code: https://github.com/lbryio/lbry
|
||||||
|
|
||||||
To contribute to the development of LBRYnet or lbrynet-console, contact jimmy@lbry.io
|
To contribute to the development of LBRYnet or lbrynet-console, contact jimmy@lbry.io
|
||||||
|
|
||||||
|
|
75
RUNNING.md
75
RUNNING.md
|
@ -9,20 +9,38 @@ Download the file https://raw.githubusercontent.com/lbryio/lbry-setup/master/lbr
|
||||||
Once it's done building, type:
|
Once it's done building, type:
|
||||||
|
|
||||||
```
|
```
|
||||||
./lbrycrd/src/lbrycrdd -server -daemon
|
lbrynet-console
|
||||||
lbrynet-gui
|
|
||||||
```
|
```
|
||||||
|
|
||||||
A window should show up with an entry box
|
A console application will load, and after a moment you will be presented with a ">" signifying
|
||||||
|
that the console is ready for commands.
|
||||||
|
|
||||||
Type wonderfullife into the box, hit go, and choose to stream or save
|
If it's your first time running lbrynet-console, you should be given some credits to test the
|
||||||
|
network. If they don't show up within a minute or two, let us know, and we'll send you some.
|
||||||
|
|
||||||
To stop lbrycrdd: `./lbrycrd/src/lbrycrd-cli stop`
|
After your credits have shown up, type
|
||||||
|
|
||||||
|
```
|
||||||
|
get wonderfullife
|
||||||
|
```
|
||||||
|
|
||||||
|
into the prompt and hit enter.
|
||||||
|
|
||||||
|
You will be asked if you want to cancel, change options, save, and perhaps stream the file.
|
||||||
|
|
||||||
|
Enter 's' for save and then hit enter.
|
||||||
|
|
||||||
|
The file should start downloading. Enter the command 'status' to check on the status of files
|
||||||
|
that are in the process of being downloaded.
|
||||||
|
|
||||||
|
To stop lbrynet-console, enter the command 'exit'.
|
||||||
|
|
||||||
|
|
||||||
## Slightly longer install guide
|
## Slightly longer install guide
|
||||||
|
|
||||||
### Installing lbrycrd from source
|
### Installing lbrycrd, the full blockchain client
|
||||||
|
|
||||||
|
Note: this process takes upwards of an hour and is not necessary to use lbrynet.
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone --depth=1 -b alpha https://github.com/lbryio/lbrycrd.git
|
git clone --depth=1 -b alpha https://github.com/lbryio/lbrycrd.git
|
||||||
|
@ -89,11 +107,21 @@ sudo python setup.py install
|
||||||
|
|
||||||
## Slightly longer running guide
|
## Slightly longer running guide
|
||||||
|
|
||||||
###In order to use lbrynet-console or lbrynet-gui, lbyrcrd must be running.
|
### lbrynet-console can be set to use lbrycrdd instead of the built in lightweight client.
|
||||||
|
|
||||||
### Running lbrycrd
|
To run lbrynet-console with lbrycrdd:
|
||||||
|
|
||||||
If you ran the easy install script, the lbrycrd folder will be in the directory you ran lbry_setup.sh from. Otherwise it is the root of the cloned lbrycrd repository. Go to that directory.
|
```
|
||||||
|
lbrynet-console </path/to/lbrycrdd>
|
||||||
|
```
|
||||||
|
|
||||||
|
If lbrycrdd is not already running, lbrynet will launch it at that path, and will shut it down
|
||||||
|
when lbrynet exits. If lbrycrdd is already running, lbrynet will not launch it and will not
|
||||||
|
shut it down, but it will connect to it and use it.
|
||||||
|
|
||||||
|
### Running lbrycrdd manually
|
||||||
|
|
||||||
|
From the lbrycrd directory, run:
|
||||||
|
|
||||||
```
|
```
|
||||||
./src/lbrycrdd -server -daemon
|
./src/lbrycrdd -server -daemon
|
||||||
|
@ -105,37 +133,14 @@ If you want to mine LBC, also use the flag '-gen', so:
|
||||||
./src/lbrycrdd -server -daemon -gen
|
./src/lbrycrdd -server -daemon -gen
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Warning: This will put a heavy load on your CPU
|
||||||
|
|
||||||
It will take a few minutes for your client to download the whole block chain.
|
It will take a few minutes for your client to download the whole block chain.
|
||||||
|
|
||||||
lbrycrdd must be running in order for lbrynet to function.
|
To shut lbrycrdd down: from the lbrycrd directory, run:
|
||||||
|
|
||||||
To shut lbrycrdd down: from the lbrycrd directory, run
|
|
||||||
|
|
||||||
```
|
```
|
||||||
./src/lbrycrd-cli stop
|
./src/lbrycrd-cli stop
|
||||||
```
|
```
|
||||||
|
|
||||||
### Option 1) Running lbrynet-console
|
|
||||||
|
|
||||||
If you used the virtualenv instructions above, make sure the virtualenv is still active. If not, reactivate it according to the instructions above, under "Installing lbrynet from source"
|
|
||||||
|
|
||||||
In your terminal: `lbrynet-console`
|
|
||||||
|
|
||||||
You should be presented with a prompt.
|
|
||||||
|
|
||||||
Watch It's a Wonderful Life via LBRY
|
|
||||||
|
|
||||||
Type into the prompt: `get wonderfullife`
|
|
||||||
|
|
||||||
To shut it down, press ctrl-c at any time or enter `exit` into the prompt.
|
|
||||||
|
|
||||||
### Option 2) Running lbrynet-gui
|
|
||||||
|
|
||||||
If you used the virtualenv instructions above, make sure the virtualenv is still active. If not, reactivate it according to the instructions above, under "Installing lbrynet from source"
|
|
||||||
|
|
||||||
In your terminal: `lbrynet-gui`
|
|
||||||
|
|
||||||
A window should pop up with an entry box. Type `wonderfullife` into the box, hit go, and then choose to save it or stream it.
|
|
||||||
Enjoy!
|
|
||||||
|
|
||||||
Any questions or problems, email jimmy@lbry.io
|
Any questions or problems, email jimmy@lbry.io
|
||||||
|
|
|
@ -29,16 +29,10 @@ class ConsoleControl(basic.LineReceiver):
|
||||||
|
|
||||||
def send_initial_prompt(self):
|
def send_initial_prompt(self):
|
||||||
self.sendLine("")
|
self.sendLine("")
|
||||||
self.sendLine("In this early release of LBRY, some functions will not work\n"
|
self.sendLine("You should have received 1000 LBC the first time you ran\n"
|
||||||
"until you have downloaded a full copy of our blockchain. To\n"
|
|
||||||
"check whether you've caught up with the blockchain, use the\n"
|
|
||||||
"command 'get-blockchain-status'.\n\n"
|
|
||||||
"If, for example, you are unable to download some files or\n"
|
|
||||||
"your balance is showing 0 when you know it shouldn't be, it\n"
|
|
||||||
"is likely that the culprit is the blockchain.\n\n"
|
|
||||||
"You should have received 1000 LBC the first time you ran\n"
|
|
||||||
"this program. If you did not, let us know! But first give\n"
|
"this program. If you did not, let us know! But first give\n"
|
||||||
"them a couple of minutes to show up.\n\n"
|
"them a moment to show up. The block time is currently 30\n"
|
||||||
|
"seconds so they should show up within a couple of minutes.\n\n"
|
||||||
"Welcome to lbrynet-console!")
|
"Welcome to lbrynet-console!")
|
||||||
self.sendLine("")
|
self.sendLine("")
|
||||||
self.sendLine("Enter a command. Try 'get wonderfullife' or 'help' to see more options.")
|
self.sendLine("Enter a command. Try 'get wonderfullife' or 'help' to see more options.")
|
||||||
|
|
|
@ -323,7 +323,7 @@ class GetWalletBalances(CommandHandler):
|
||||||
def _show_time_behind_blockchain(self, rounded_time):
|
def _show_time_behind_blockchain(self, rounded_time):
|
||||||
if rounded_time.unit >= RoundedTime.HOUR:
|
if rounded_time.unit >= RoundedTime.HOUR:
|
||||||
self.console.sendLine("\n\nYour balance may be out of date. This application\n"
|
self.console.sendLine("\n\nYour balance may be out of date. This application\n"
|
||||||
"is %s behind the LBC blockchain. It should take a few minutes to\n"
|
"is %s behind the LBC blockchain. It may take a few minutes to\n"
|
||||||
"catch up the first time you run this early version of LBRY.\n"
|
"catch up the first time you run this early version of LBRY.\n"
|
||||||
"Please be patient =).\n\n" % str(rounded_time))
|
"Please be patient =).\n\n" % str(rounded_time))
|
||||||
else:
|
else:
|
||||||
|
@ -797,7 +797,7 @@ class AddStream(CommandHandler):
|
||||||
self.console.sendLine("\nThis application is %s behind the LBC blockchain, so some of your\n"
|
self.console.sendLine("\nThis application is %s behind the LBC blockchain, so some of your\n"
|
||||||
"funds may not be available. Use 'get-blockchain-status' to check if\n"
|
"funds may not be available. Use 'get-blockchain-status' to check if\n"
|
||||||
"your application is up to date with the blockchain.\n\n"
|
"your application is up to date with the blockchain.\n\n"
|
||||||
"It should take a few minutes to catch up the first time you run this\n"
|
"It may take a few minutes to catch up the first time you run this\n"
|
||||||
"early version of LBRY. Please be patient =).\n\n" % str(rounded_time))
|
"early version of LBRY. Please be patient =).\n\n" % str(rounded_time))
|
||||||
|
|
||||||
def _log_recent_blockchain_time_error_download(self, err):
|
def _log_recent_blockchain_time_error_download(self, err):
|
||||||
|
@ -913,7 +913,7 @@ class AddStreamFromLBRYcrdName(AddStreamFromHash):
|
||||||
self.console.sendLine("\nThis application is %s behind the LBC blockchain, which may be\n"
|
self.console.sendLine("\nThis application is %s behind the LBC blockchain, which may be\n"
|
||||||
"preventing this name from being resolved correctly. Use 'get-blockchain-status'\n"
|
"preventing this name from being resolved correctly. Use 'get-blockchain-status'\n"
|
||||||
"to check if your application is up to date with the blockchain.\n\n"
|
"to check if your application is up to date with the blockchain.\n\n"
|
||||||
"It should take a few minutes to catch up the first time you run\n"
|
"It may take a few minutes to catch up the first time you run\n"
|
||||||
"this early version of LBRY. Please be patient =).\n\n" % str(rounded_time))
|
"this early version of LBRY. Please be patient =).\n\n" % str(rounded_time))
|
||||||
else:
|
else:
|
||||||
self.console.sendLine("\n")
|
self.console.sendLine("\n")
|
||||||
|
@ -1850,7 +1850,7 @@ class Publish(CommandHandler):
|
||||||
if rounded_time.unit >= RoundedTime.HOUR:
|
if rounded_time.unit >= RoundedTime.HOUR:
|
||||||
self.console.sendLine("This application is %s behind the LBC blockchain\n"
|
self.console.sendLine("This application is %s behind the LBC blockchain\n"
|
||||||
"and therefore may not have all of the funds you expect\n"
|
"and therefore may not have all of the funds you expect\n"
|
||||||
"available at this time. It should take a few minutes to\n"
|
"available at this time. It may take a few minutes to\n"
|
||||||
"catch up the first time you run this early version of LBRY.\n"
|
"catch up the first time you run this early version of LBRY.\n"
|
||||||
"Please be patient =).\n" % str(rounded_time))
|
"Please be patient =).\n" % str(rounded_time))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue