xuanlinli17 / corl_22_frame_mining

[CoRL22] Frame Mining - a Free Lunch for Learning Robotic Manipulation from 3D Point Clouds
https://colin97.github.io/FrameMining/
Apache License 2.0
26 stars 0 forks source link

requests.exceptions.ProxyError: HTTPSConnectionPool(host='storage1.ucsd.edu', port=443): Max retries exceeded with url: /datasets/PartNetMobilityScrambled/1000.zip (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fa5cfb23040>: Failed to establish a new connection: [Errno -3 #2

Closed yongpan0715 closed 1 year ago

yongpan0715 commented 1 year ago

After creating the required environment, I tried sh ./script/ppo_FM_MA.sh, but encountered with an issue below:

File "/home/yong/anaconda3/envs/dianyun/lib/python3.8/site-packages/requests/sessions.py", line 701, in send
    r = adapter.send(request, **kwargs)
  File "/home/yong/anaconda3/envs/dianyun/lib/python3.8/site-packages/requests/adapters.py", line 559, in send
    raise ProxyError(e, request=request)
requests.exceptions.ProxyError: HTTPSConnectionPool(host='storage1.ucsd.edu', port=443): Max retries exceeded with url: /datasets/PartNetMobilityScrambled/1000.zip (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fa5cfb23040>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')))
xuanlinli17 commented 1 year ago

This is partnet-mobility download error possibly due to internet connection issue. Could you try ping storage1.ucsd.edu?

yongpan0715 commented 1 year ago

Probably because I set up the network proxy, I made the following changes to the code to run _session = requests.Session() session.trust_env = False r = session.get(url, stream=True)

r = requests.get(url, stream=True)_