PaddlePaddle / PaddleHub

Awesome pre-trained models toolkit based on PaddlePaddle. (400+ models including Image, Text, Audio, Video and Cross-Modal with Easy Inference & Serving)【安全加固,暂停交互,请耐心等待】
https://www.paddlepaddle.org.cn/hub
Apache License 2.0
12.72k stars 2.08k forks source link

Can't connect to Hub Server #1833

Open javadoge opened 2 years ago

javadoge commented 2 years ago

执行命令: hub install stylepro_artistic==1.0.1 报错如下:

1649229496(1)

KPatr1ck commented 2 years ago

本地网络是正常的吗?这个报错提示无法连接到 http://paddlepaddle.org.cn/paddlehub 试一试下面的requests.get访问是否正常。

import requests
url = 'http://paddlepaddle.org.cn/paddlehub'
r = requests.get(url)
print(r.text)
lin0711 commented 2 years ago

I also encountered this problem, how can I solve it?