Connection timed out : when using python -m visdom.server
See original GitHub issueHi, when I use
python -m visdom.server
to start visdom server, I got Connection timed out error as following:
`Traceback (most recent call last):
File “/root/anaconda2/envs/gtn_env/lib/python3.6/urllib/request.py”, line 1318, in do_open
encode_chunked=req.has_header(‘Transfer-encoding’))
File “/root/anaconda2/envs/gtn_env/lib/python3.6/http/client.py”, line 1239, in request
self._send_request(method, url, body, headers, encode_chunked)
File “/root/anaconda2/envs/gtn_env/lib/python3.6/http/client.py”, line 1285, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File “/root/anaconda2/envs/gtn_env/lib/python3.6/http/client.py”, line 1234, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File “/root/anaconda2/envs/gtn_env/lib/python3.6/http/client.py”, line 1026, in _send_output
self.send(msg)
File “/root/anaconda2/envs/gtn_env/lib/python3.6/http/client.py”, line 964, in send
self.connect()
File “/root/anaconda2/envs/gtn_env/lib/python3.6/http/client.py”, line 1392, in connect
super().connect()
File “/root/anaconda2/envs/gtn_env/lib/python3.6/http/client.py”, line 936, in connect
(self.host,self.port), self.timeout, self.source_address)
File “/root/anaconda2/envs/gtn_env/lib/python3.6/socket.py”, line 722, in create_connection
raise err
File “/root/anaconda2/envs/gtn_env/lib/python3.6/socket.py”, line 713, in create_connection
sock.connect(sa)
TimeoutError: [Errno 110] Connection timed out
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File “/root/anaconda2/envs/gtn_env/lib/python3.6/site-packages/visdom/server.py”, line 615, in download_scripts data = opener.open(req).read() File “/root/anaconda2/envs/gtn_env/lib/python3.6/urllib/request.py”, line 526, in open response = self._open(req, data) File “/root/anaconda2/envs/gtn_env/lib/python3.6/urllib/request.py”, line 544, in _open ‘_open’, req) File “/root/anaconda2/envs/gtn_env/lib/python3.6/urllib/request.py”, line 504, in _call_chain result = func(*args) File “/root/anaconda2/envs/gtn_env/lib/python3.6/urllib/request.py”, line 1361, in https_open context=self._context, check_hostname=self._check_hostname) File “/root/anaconda2/envs/gtn_env/lib/python3.6/urllib/request.py”, line 1320, in do_open raise URLError(err) urllib.error.URLError: <urlopen error [Errno 110] Connection timed out>
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File “/root/anaconda2/envs/gtn_env/lib/python3.6/runpy.py”, line 193, in _run_module_as_main “main”, mod_spec) File “/root/anaconda2/envs/gtn_env/lib/python3.6/runpy.py”, line 85, in _run_code exec(code, run_globals) File “/root/anaconda2/envs/gtn_env/lib/python3.6/site-packages/visdom/server.py”, line 636, in <module> download_scripts() File “/root/anaconda2/envs/gtn_env/lib/python3.6/site-packages/visdom/server.py”, line 619, in download_scripts logging.error(‘Error {} while downloading {}’.format(exc.code, key)) AttributeError: ‘URLError’ object has no attribute ‘code’ ` I am a new one for pytorch and visdom. I would like to use visdom for visualization. I use anaconda2, python3.6 as default setting. What should I do? Thanks a lot !
Issue Analytics
- State:
- Created 6 years ago
- Comments:18 (7 by maintainers)
Top GitHub Comments
Correct, then try to start the server again and see if it makes it to running. In general as you run into problems with CDNs, the order that visdom downloads and saves files is as follows:
If you run the server and it hangs on downloading, you can download the next missing file yourself (based on the last file in the list you can confirm having)
@JackUrb Yes, it’s a js file. And following your instructions, I solved this problem. Thank you very much.