installer fix to include wxpython

master
marxzuckerburg 4 years ago
parent 1708b042da
commit 7b37c424dc

@ -911,8 +911,7 @@ class LoginScreen(BaseScreen):
self.log('My keychain now looks like v2:',dict_format(commie.keychain()))
await logfunc(f'With this scrambled password we can encrypt your super-sensitive private key: \n(before) {privkey.discreet}',pause=True,clear=False)
await logfunc(f'With this scrambled password we can encrypt your super-sensitive private key: \n(after) {privkey_encr_obj.discreet}',pause=True,clear=False)
await logfunc(f'With this scrambled password we can encrypt your super-sensitive private key to:\n(after) {privkey_encr_obj.discreet}',pause=True,clear=False)
# store privkey pieces
commie.crypt_keys.set(uri_id, privkey_encr_obj.data, prefix='/privkey_encr/')

@ -287,6 +287,17 @@ echo "Now using python 3: `which python`"
python -m pip install -r requirements.txt
if [ "$machine" = "Mac" ]
then
python -m pip install git+https://github.com/kivy/pyobjus
else
$condaexec install wxpython
fi
echo '
6) adding comrad bin folder to path

Loading…
Cancel
Save