-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gaierror: [Errno 8] nodename nor servname provided, or not known #47
Comments
+1 |
1 similar comment
+1 |
+1 |
+1 any update? |
Same issue with Sierra. I just put |
Any update on this? High Sierra here, and line above didnt work |
I had the same issue. The root of the problem is that there is no mapping between the name of he local host and an IP address. To solve the issue the name of your host (network name of the machine) needs to be added in |
@mgka got me there with their suggestion. However it required me to find my |
Even in 2018 +1 |
yes,it is working well , thanks |
@DMTSource thanks. executing |
So in 2019 I still had this problem: |
Unfortunately, this remains a problem in 2024 .. any solutions yet? 😕 |
@CHE1RON have you tried to open
My Account name is Keitel, and mine was |
Yeah, I added all kinds of hostnames, both with trailing |
@CHE1RON last thing I can tell you is to double check your hostname, cause it is different according to macOS version. In terminal type: If nothing works, then you should check if this file is ever used, as if its permission access allow it, or not overridden by another file, I don't know. |
I have a problem running scoop with OSX El Capitan.
Here the self-explanatory output I get:
2.7.12 (default, Oct 14 2016, 15:23:34)
[GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)]
gaierror Traceback (most recent call last)
in ()
----> 1 from scoop import futures
/Users/username/Homebrew/lib/python2.7/site-packages/scoop/futures.py in ()
24
25 import scoop
---> 26 from ._types import Future, CallbackType
27 from . import _control as control
28 from .fallbacks import (
/Users/username/Homebrew/lib/python2.7/site-packages/scoop/_types.py in ()
21 import greenlet
22 import scoop
---> 23 from scoop._comm import Communicator, Shutdown
24
25 # Backporting collection features
/Users/username/Homebrew/lib/python2.7/site-packages/scoop/_comm/init.py in ()
20
21 if scoop.CONFIGURATION.get('backend', 'ZMQ') == 'ZMQ':
---> 22 from .scoopzmq import ZMQCommunicator as Communicator
23 else:
24 from .scooptcp import TCPCommunicator as Communicator
/Users/username/Homebrew/lib/python2.7/site-packages/scoop/_comm/scoopzmq.py in ()
29
30 import scoop
---> 31 from .. import shared, encapsulation, utils
32 from ..shared import SharedElementEncapsulation
33 from .scoopexceptions import Shutdown, ReferenceBroken
/Users/username/Homebrew/lib/python2.7/site-packages/scoop/shared.py in ()
22 import time
23
---> 24 from . import encapsulation, utils
25 import scoop
26 from .fallbacks import ensureScoopStartedProperly, NotStartedProperly
/Users/username/Homebrew/lib/python2.7/site-packages/scoop/utils.py in ()
41
42 localHostnames.extend([
---> 43 ip for ip in socket.gethostbyname_ex(socket.gethostname())[2]
44 if not ip.startswith("127.")][:1]
45 )
gaierror: [Errno 8] nodename nor servname provided, or not known
Any clue?
The text was updated successfully, but these errors were encountered: