xSke / garlium

Garlium; Garlicoin thin client
https://xske.github.io/garlium
MIT License
29 stars 8 forks source link

Not connecting to network #5

Closed xenonnsmb closed 6 years ago

xenonnsmb commented 6 years ago

I'm running Garlium from source on macOS, and it won't connect to any servers. I get this in the console:

[SSL: NO_PROTOCOLS_AVAILABLE] no protocols available (_ssl.c:645) [84.245.14.110] failed to connect [Errno 61] Connection refused [SSL: NO_PROTOCOLS_AVAILABLE] no protocols available (_ssl.c:645) [172.93.54.31] SSL error retrieving SSL certificate: [SSL: NO_PROTOCOLS_AVAILABLE] no protocols available (_ssl.c:645) [SSL: NO_PROTOCOLS_AVAILABLE] no protocols available (_ssl.c:645) [mhamburger.net] SSL error retrieving SSL certificate: [SSL: NO_PROTOCOLS_AVAILABLE] no protocols available (_ssl.c:645)

Is this an issue with Garlium, or did I just not install it correctly?

xSke commented 6 years ago

From a quick Google, this looks like it's caused by outdated versions of SSL libraries. Is your system updated?

xenonnsmb commented 6 years ago

I fixed it. The issue was that my python3 and pip3 were symlinked to python3.5, not python3.6. I fixed this by putting this in my .bash_profile:

alias python3=/usr/local/bin/python3.6
alias pip3=/usr/local/bin/pip3.6