---------------------------------------------------------------------------
error Traceback (most recent call last)
~/anaconda3/lib/python3.5/getpass.py in unix_getpass(prompt, stream)
68 try:
---> 69 old = termios.tcgetattr(fd) # a copy to save
70 new = old[:]
error: (25, 'Inappropriate ioctl for device')
During handling of the above exception, another exception occurred:
EOFError Traceback (most recent call last)
<ipython-input-3-44f6803d6790> in <module>()
----> 1 rc = Client(sshserver='you@zj')
2 rc
~/anaconda3/lib/python3.5/site-packages/ipyparallel/client/client.py in __init__(self, url_file, profile, profile_dir, ipython_dir, context, debug, sshserver, sshkey, password, paramiko, timeout, cluster_id, **extra_args)
473 password=False
474 else:
--> 475 password = getpass("SSH Password for %s: "%sshserver)
476 ssh_kwargs = dict(keyfile=sshkey, password=password, paramiko=paramiko)
477
~/anaconda3/lib/python3.5/getpass.py in unix_getpass(prompt, stream)
89 # clean up unused file objects before blocking
90 stack.close()
---> 91 passwd = fallback_getpass(prompt, stream)
92
93 stream.write('\n')
~/anaconda3/lib/python3.5/getpass.py in fallback_getpass(prompt, stream)
124 stream = sys.stderr
125 print("Warning: Password input may be echoed.", file=stream)
--> 126 return _raw_input(prompt, stream)
127
128
~/anaconda3/lib/python3.5/getpass.py in _raw_input(prompt, stream, input)
146 line = input.readline()
147 if not line:
--> 148 raise EOFError
149 if line[-1] == '\n':
150 line = line[:-1]
EOFError: