当前位置:   article > 正文

解决cmd中无法访问huggingface.co的问题_huggingface无法访问

huggingface无法访问

命令行走代理

set http_proxy=socks5://127.0.0.1:7890
set https_proxy=socks5://127.0.0.1:7890
  • 1
  • 2

移除环境变量

set all_proxy=
set ALL_PROXY=
  • 1
  • 2

端口号
然报错:

ImportError: Using SOCKS proxy, but the 'socksio' package is not installed. Make sure to install httpx using `pip install httpx[socks]`.
  • 1

遂安装依赖项

pip install httpx[socks]
  • 1

继续报错

ERROR: Could not install packages due to an OSError: Missing dependencies for SOCKS support.
  • 1

使用代理服务器:
如果在安装过程中遇到了网络限制,可以考虑使用代理服务器。在安装时,确保代理服务器的配置适用于你的系统。你可以使用 --proxy 参数指定代理服务器,例如:

Copy code
pip install --proxy=http://代理服务器地址:端口 pysocks
  • 1
  • 2

将上述命令中的 代理服务器地址 替换为代理服务器的实际地址,端口 替换为代理服务器的端口号。

一波操作后还是无法访问
(这里可以用curl命令来查看时候通了)

curl google.com
curl: (52) Empty reply from server
curl baidu.com
<html>
<meta http-equiv="refresh" content="0;url=http://www.baidu.com/">
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

显然没通
然后

set http_proxy=http://127.0.0.1:7890
set https_proxy=http://127.0.0.1:7890
  • 1
  • 2

curl通了,原来走的是http协议,不是socket5协议

解决问题过程中参考的资料:
https://zhuanlan.zhihu.com/p/46973701

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/281418
推荐阅读
相关标签
  

闽ICP备14008679号