When I run npm install && npm start
npm WARN [email protected] requires a peer of stylelint@^9.0.0 but none is installed. You must install peer dependencies yourself.
up to date in 7.002s
[email protected] start /Users/chengchaochao/Downloads/MagicMirror
sh run-start.sh
dyld: lazy symbol binding failed: Symbol not found: _SSL_library_init
Referenced from: /Users/chengchaochao/Downloads/MagicMirror/node_modules/uws/uws_darwin_57.node
Expected in: flat namespace
dyld: Symbol not found: _SSL_library_init
Referenced from: /Users/chengchaochao/Downloads/MagicMirror/node_modules/uws/uws_darwin_57.node
Expected in: flat namespace
when I run sh run-start.sh
dyld: lazy symbol binding failed: Symbol not found: _SSL_library_init
Referenced from: /Users/chengchaochao/Downloads/MagicMirror/node_modules/uws/uws_darwin_57.node
Expected in: flat namespace
dyld: Symbol not found: _SSL_library_init
Referenced from: /Users/chengchaochao/Downloads/MagicMirror/node_modules/uws/uws_darwin_57.node
Expected in: flat namespace
Same issue and found a workaround here:
https://github.com/wonderunit/storyboarder/issues/735
Just delete uws folder: rm -rf node_modules/uws and MagicMirror would start.
@MichMich I came across to the same problem because I am developing my modules with OSX and then deploy them to Pi. Can you guys add this to README? @ubertao 's solution worked
@henrikra Feel free to send a PR. I close this issue since the solution is found. Let me know if I need to keep it open.
Most helpful comment
Same issue and found a workaround here:
https://github.com/wonderunit/storyboarder/issues/735
Just delete uws folder:
rm -rf node_modules/uwsand MagicMirror would start.