Giter VIP home page Giter VIP logo

Comments (3)

eshriek avatar eshriek commented on May 14, 2024

I set up Ubuntu 16.04 as a VM, updated, then tried the following:

$sudo apt-get install libgmp3-dev build-essential python2.7 python2.7-dev python-pip
$git clone https://github.com/lbryio/lbry.git
$cd lbry
$sudo python setup.py install
$lbrynet-daemon
Starting lbrynet-daemon from command line
To view activity, view the log file here: /home/lbry/.lbrynet/lbrynet.log
Web UI is available at http://localhost:5279
JSONRPC API is available at http://localhost:5279/lbryapi
To quit press ctrl-c or call 'stop' via the API
Traceback (most recent call last):
File "/usr/local/bin/lbrynet-daemon", line 9, in
load_entry_point('lbrynet==0.3.4', 'console_scripts', 'lbrynet-daemon')()
File "/usr/local/lib/python2.7/dist-packages/lbrynet-0.3.4-py2.7.egg/lbrynet/lbrynet_daemon/LBRYDaemonControl.py", line 108, in start
branch_specified=True if args.branch else False)
File "/usr/local/lib/python2.7/dist-packages/lbrynet-0.3.4-py2.7.egg/lbrynet/lbrynet_daemon/LBRYDaemonServer.py", line 192, in start
d = self._setup_server(wallet)
File "/usr/local/lib/python2.7/dist-packages/lbrynet-0.3.4-py2.7.egg/lbrynet/lbrynet_daemon/LBRYDaemonServer.py", line 186, in _setup_server
self._api = LBRYDaemon(self.root, wallet_type="lbrycrd")
File "/usr/local/lib/python2.7/dist-packages/lbrynet-0.3.4-py2.7.egg/lbrynet/lbrynet_daemon/LBRYDaemon.py", line 356, in init
with open(self.lbrycrd_conf, 'w') as f:
IOError: [Errno 2] No such file or directory: '/home/lbry/.lbrycrd/lbrycrd.conf'

...

$ cat lbrynet.log
Starting lbrynet-daemon from command line
Writing default settings : {"cache_time": 3600, "download_directory": "/home/lbry/Downloads", "data_rate": 0.005, "delete_blobs_on_remove": true, "wallet_type": "lbrycrd", "max_upload": 0.0, "last_version": {"lbryum": "2.6.0.6", "lbrynet": "0.3.4"}, "upload_log": true, "run_on_startup": false, "startup_scripts": [], "max_search_results": 25, "download_timeout": 30, "max_download": 0.0, "requested_first_run_credits": false, "dht_node_port": 4444, "max_key_fee": 100.0, "search_timeout": 3.0, "peer_port": 3333, "use_upnp": true, "start_lbrycrdd": true} --> /home/lbry/.lbrynet/daemon_settings.json
Using wallet type lbrycrd specified from command line
No lbrycrd.conf found at /home/lbry/.lbrycrd/lbrycrd.conf. Generating now...

//The file does not generate. Manually added lbrycrd.conf with rpc user name and password specified in file.

Then tried:

$ lbrynet-daemon
Starting lbrynet-daemon from command line
To view activity, view the log file here: /home/lbry/.lbrynet/lbrynet.log
Web UI is available at http://localhost:5279
JSONRPC API is available at http://localhost:5279/lbryapi
To quit press ctrl-c or call 'stop' via the API
Unhandled error in Deferred:

Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner
self.run()
File "/usr/lib/python2.7/threading.py", line 754, in run
self.__target(_self.__args, *_self.__kwargs)
File "/usr/local/lib/python2.7/dist-packages/Twisted-16.3.0-py2.7-linux-x86_64.egg/twisted/_threads/_threadworker.py", line 46, in work
task()
File "/usr/local/lib/python2.7/dist-packages/Twisted-16.3.0-py2.7-linux-x86_64.egg/twisted/_threads/_team.py", line 190, in doWork
task()
--- ---
File "/usr/local/lib/python2.7/dist-packages/Twisted-16.3.0-py2.7-linux-x86_64.egg/twisted/python/threadpool.py", line 246, in inContext
result = inContext.theWork()
File "/usr/local/lib/python2.7/dist-packages/Twisted-16.3.0-py2.7-linux-x86_64.egg/twisted/python/threadpool.py", line 262, in
inContext.theWork = lambda: context.call(ctx, func, _args, *_kw)
File "/usr/local/lib/python2.7/dist-packages/Twisted-16.3.0-py2.7-linux-x86_64.egg/twisted/python/context.py", line 118, in callWithContext
return self.currentContext().callWithContext(ctx, func, _args, *_kw)
File "/usr/local/lib/python2.7/dist-packages/Twisted-16.3.0-py2.7-linux-x86_64.egg/twisted/python/context.py", line 81, in callWithContext
return func(args,*kw)
File "/usr/local/lib/python2.7/dist-packages/lbrynet-0.3.4-py2.7.egg/lbrynet/core/LBRYWallet.py", line 625, in _make_connection
self._start_daemon()
File "/usr/local/lib/python2.7/dist-packages/lbrynet-0.3.4-py2.7.egg/lbrynet/core/LBRYWallet.py", line 756, in _start_daemon
raise ValueError("Couldn't launch lbrycrdd. Tried %s" % self.lbrycrdd_path)
exceptions.ValueError: Couldn't launch lbrycrdd. Tried ./lbrycrdd

from lbry-sdk.

lyoshenka avatar lyoshenka commented on May 14, 2024

@eshriek can you please try the latest build (0.3.5) and see if you experience the same issue. make sure you uninstall (apt-get purge) any previous lbry or lbrynet installs, or just start from a clean vm.

thanks.

from lbry-sdk.

eshriek avatar eshriek commented on May 14, 2024

No problems at all with 0.3.5 install from deb file. Thanks! Looking forward to more updates.

from lbry-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.