URenko / Accesser

🌏一个解决SNI RST导致维基百科、Pixiv等站点无法访问的工具 | A tool for solving SNI RST
GNU General Public License v3.0
895 stars 77 forks source link

2023-03-31 21:33:43 ERROR asyncio: Task exception was never retrieved #118

Closed goehls closed 1 year ago

goehls commented 1 year ago
image
URenko commented 1 year ago

正如日志所提示的:httpx is not available

所以要么安装httpx:

pip3 install httpx[http2]

一个更便捷的方式是安装时带上[doh]:

pip3 install -U accesser[doh]

要么把默认的这些DoH服务器(需要httpx)地址改为别的

goehls commented 1 year ago
image
goehls commented 1 year ago

安装时如果带上[doh]无法正常安装:

image
URenko commented 1 year ago

因为你使用了zsh,[]会被视为特殊字符,所以你需要

pip3 install -U 'accesser[doh]'

pip3 install -U accesser\[doh\]

对于前一个问题,暂不清楚,你可能需要确认下是否已经导入证书,或是需要pip3 uninstall accesser卸载再重新安装

goehls commented 1 year ago

我使用的是mac系统。我看到这里的文档,并没有说明要安装哪些证书,只是看到windows系统会有证书安装。不知道要导入哪些证书呢

URenko commented 1 year ago

运行accesser后从 http://localhost:7654/CERT/root.crt 下载根证书,然后导入系统并信任,可以参考Fiddler的说明或自行搜索。

如果是使用Firefox浏览器,可以直接在浏览器中导入,具体自行搜索