v2.9.4 won't run
See original GitHub issuePrevious version worked. But this one had error on start.
vmware@vmware-virtual-machine ~ $ Downloads/electrum/electron-cash
Traceback (most recent call last):
File "Downloads/electrum/electron-cash", line 95, in <module>
imp.load_module('electroncash', *imp.find_module('lib'))
File "/home/vmware/Downloads/electrum/lib/__init__.py", line 3, in <module>
from wallet import Synchronizer, Wallet, Imported_Wallet
File "/home/vmware/Downloads/electrum/lib/wallet.py", line 65, in <module>
import paymentrequest
File "/home/vmware/Downloads/electrum/lib/paymentrequest.py", line 39, in <module>
import paymentrequest_pb2 as pb2
File "/home/vmware/Downloads/electrum/lib/paymentrequest_pb2.py", line 9, in <module>
from google.protobuf import symbol_database as _symbol_database
File "/home/vmware/Downloads/electrum/packages/google/protobuf/symbol_database.py", line 184, in <module>
_DEFAULT = SymbolDatabase(pool=descriptor_pool.Default())
AttributeError: 'module' object has no attribute 'Default'
vmware@vmware-virtual-machine ~ $
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:8
Top Results From Across the Web
Standalone Launcher won't work anymore after Patch 9.4 later ...
Upon launch you log in using your regular details. This happened with destiny 2 twice, moving to the blizzard launcher with activision and...
Read more >[ROM] Trigger v2.9.4 » Why not? » EDT » 4/15/11 | XDA Forums
Great GPS! modded camera, hold power button to focus, let go to take a picture; video player, music player, camera all work below...
Read more >Light-O-Rama v2.9.4
A Light-O-Rama controller can be controlled by another controller (or a PC running Light-O-Rama software), or it can control itself and/or other controllers,...
Read more >Library does not exist SAS 9.4 - Programming
Solved: Hi all, I'm new to SAS and I keep getting the error 'Library does not exist'. I am using SAS 9.4 on...
Read more >Monitoring v2 - failed to create pv for prometheus when using ...
run rancher:v2.5-head single-install; provision a cluster; install Longhorn 1.0.201; install Monitoring v2 9.4.201 with persistent storage ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@molecular Thanks! That was it!! After running “sudo pip2 install --upgrad protobuf” it worked!
something wrong with google.protobuf lib
can you do the following?
The last line might shed some light about where that descriptor_pool is being loaded from. Maybe you have an older version of protobuf on your system and that’s being used? If so, update python2-protobuf (or whatever it’s called on your system). Maybe
pip2 install --upgrad protobuf
. But don’t install too many ways: preferrably use your distros package manager to install/upgrade it. If in doubtfind /usr | grep python2 | grep protobuf
might shed light on what’s installedCan you also do “python --version”? (I usually run electrum using
python2 electron-cash
to avoid accidentally running it with python3. I don’t think that’s the issue here, though.