Python 报错 urllib3.exceptions.ProxySchemeUnknown: Proxy URL had no scheme, should start with http:// or https://
原因
服务器连外网需要通过代理,用服务器运行wandb的时候在第一次引用import wandb
的时候报错
解决方法
改代理声明。在代理地址上面加上http
和https
。
export http_proxy="123.345.78.9:808"
export https_proxy="123.345.78.9:808"
改为
export http_proxy="http://123.345.78.9:808"
export https_proxy="https://123.345.78.9:808"
效果
不报错了,出现以下信息
@simba:~/pycharmMap/aml$ python dta.py
wandb: W&B API key is configured (use `wandb login --relogin` to force relogin)
wandb: Appending key for api.wandb.ai to your netrc file: /home2/abc/.netrc
说明登录成功