diff --git a/content/faq/how-to-run-lbry.md b/content/faq/how-to-run-lbry.md index a4455072..69786b43 100644 --- a/content/faq/how-to-run-lbry.md +++ b/content/faq/how-to-run-lbry.md @@ -2,24 +2,19 @@ title: How do I run LBRY from the command line? category: setup --- +This guide will allow you to run the LBRY daemon which connects to the LBRY network. You can run the daemon separately in this fashion without having to start the LBRY app. If the LBRY app is started, it will utilize the running daemon. -#### If you [installed from source](how-to-get-lbry-command-line.md) +## Windows +1. Open a **Command Prompt** application window +1. Type `cd "c:\Program Files (x86)\LBRY\resources\app\dist"` and click Enter +1. Type `lbrynet-deamon` and click Enter. -If using lbryum, run `lbrynet-daemon`. +## MacOS +1. Open a **Terminal** window +1. Type `cd /Applications/LBRY.app/Contents/Resources/app/dist` +1. Type `./lbrynet-daemon` and click Enter. -If using [lbrycrdd](how-to-run-lbry-with-lbrycrdd.md), run `lbrynet-daemon --wallet=lbrycrd`. - - - -#### On Linux - -LBRY is installed into `/usr/share/python/lbrynet`. The executables are in -`/usr/share/python/lbrynet/bin`. For example, to run lbrynet-daemon, type: - - /usr/share/python/lbrynet/bin/lbry - - - -#### On OS X - -[Install from source](how-to-get-lbry-command-line.md), then start with `lbrynet-daemon`. +## Ubuntu / Linux +1. Open a **Terminal** window +1. Type `cd /opt/LBRY/resources/app/dist` or build location if running from source +1. Type `./lbrynet-daemon` and click Enter.