Post
Topic
Board Armory
Re: Armory 0.95.1 is out
by
iCan
on 22/01/2017, 11:48:06 UTC
Hi I have a problem on MacOS Sierra 10.12.3 with Armory 0.95.1. It doesn't launch at all. Just jump 3-4 times in doc and disappear. I have no idea where to dig to fix this problem. Can u help me?

Edit:
Armory definitely works for me on 10.12.2. Just sent and received coins today, actually. Smiley That said, can you do me a favor? Go to /Applications/Armory.app/Contents/MacOS/py/usr/lib/armory/armoryengine/ and edit ArmoryUtils.py at Line 1267. Once saved, start Armory and see if it finishes starting up.

Old:
Code:
LOGINFO('   Preferred Encoding    : ' + locale.getpreferredencoding())

New:
Code:
prefEnc = locale.getpreferredencoding()
if prefEnc == None:
   if os.environ.get('LC_ALL', '').upper() == 'UTF-8':
      prefEnc = 'utf-8'
   else:
      prefEnc = 'Unknown'
LOGINFO('   Preferred Encoding    : ' + prefEnc)

EDIT: Added a suggested fix.

I found out this solution but it doesn't help. Same problem. And my log file is clear... no problem report's at all