renguifeng 发布的文章
WSL2 访问 Windows 宿主机 IP
https://pwe.cat/wsl-localhost/
WSL2 访问 Windows 宿主机 IP
18 Sep 2021@Pwe今天帮同学看代理问题,发现网络配置非常扭曲:在 Windows 下使用 Clash GUI 连接代理,希望在 WSL2 下也能访问,又不想在 WSL2 中配置 clash,于是尝试连接 Windows 主机代理端口
经尝试 localhost
, 127.0.0.1
, ::1
均无法连接,后思考 WSL2 与 Windows 是否不共享同一个 localhost
,发现由于 WSL2 通过 Hyper-V 实现,确实不共享,且每次重启均会发生改变
尝试如下方法可以在默认路由中找到宿主机
ip route
提取宿主机 IP
ip route | grep default | awk '{print $3}'
openwebui集成lmstudio
docker run -d -p 3000:8080 -e OPENAI_API_BASE_URL=http://host.docker.internal:1234/v1 -e OPENAI_API_KEY=lm-studio -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
https://github.com/open-webui/open-webui/discussions/775
对话系统
python类库
https://pypi.org/project/torch/#files
https://www.cnblogs.com/microman/p/6107879.html
新版ubuntu要求使用https源,要注意。
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
临时使用:
可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple