Description
Hi,after i installed nipype,i tested my system.:python -c "import nipype; nipype.test()". I got the following error:
self = <ssl.SSLSocket object at 0x7f7d66861668>, len = 425, buffer = None
def read(self, len=1024, buffer=None):
"""Read up to LEN bytes and return them.
Return zero-length string on EOF."""
self._checkClosed()
if not self._sslobj:
raise ValueError("Read on closed or unwrapped SSL socket.")
try:
if buffer is not None:
v = self._sslobj.read(len, buffer)
else:
v = self._sslobj.read(len)
E SSLError: (u'The read operation timed out\nInterface S3DataGrabber failed to run. ',)
/home/caixi/anaconda/lib/python2.7/ssl.py:653: SSLError
----------------------------- Captured stdout call -----------------------------
170508-06:24:42,918 boto ERROR:
Caught exception reading instance data
Traceback (most recent call last):
File "/home/caixi/anaconda/lib/python2.7/site-packages/boto/utils.py", line 214, in retry_url
r = opener.open(req)
File "/home/caixi/anaconda/lib/python2.7/urllib2.py", line 429, in open
response = self._open(req, data)
File "/home/caixi/anaconda/lib/python2.7/urllib2.py", line 447, in _open
'_open', req)
File "/home/caixi/anaconda/lib/python2.7/urllib2.py", line 407, in _call_chain
result = func(*args)
File "/home/caixi/anaconda/lib/python2.7/urllib2.py", line 1228, in http_open
return self.do_open(httplib.HTTPConnection, req)
File "/home/caixi/anaconda/lib/python2.7/urllib2.py", line 1198, in do_open
raise URLError(err)
URLError: <urlopen error [Errno 111] Connection refused>
170508-06:24:42,946 boto ERROR:
Unable to read instance data, giving up
!!!!!!!!!!!!!!!!!!!! Interrupted: stopping after 1 failures !!!!!!!!!!!!!!!!!!!!
======== 1 failed, 2326 passed, 32 skipped, 5 xfailed in 357.66 seconds ========
Kind regards.