当前位置:   article > 正文

《英伟达-本地AI》--NVIDIA Chat with RTX--部署问题:ValueError: When localhost is not accessible_valueerror: when localhost is not accessible, a sh

valueerror: when localhost is not accessible, a shareable link must be creat

部署英伟达本地AI: 

英伟达-本地AI》--NVIDIA Chat with RTX-简单本机部署

出现;

ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True or check your
proxy settings to allow access to localhost.

阿丹:
        在部署NVIDIA Chat with RTX的时候出现了一个比较奇怪的问题。但是解决掉了,这里做一些记录。

描述:

在成功运行了之后出现这个报错,尝试解决

发现后台dos窗口出现

这个报错

  1. Running on local URL: http://127.0.0.1:30733
  2. ╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
  3. │ C:\ai-NVIDIA\RAG\trt-llm-rag-windows-main\app.py:501 in <module>
  4. │ │
  5. 498
  6. 499 interface.on_regenerate_index(handle_regenerate_index) │
  7. 500 # render the interface
  8. │ ❱ 501 interface.render() │
  9. 502
  10. │ │
  11. │ C:\ai-NVIDIA\RAG\trt-llm-rag-windows-main\ui\user_interface.py:254 in render │
  12. │ │
  13. 251 │ │ interface.queue() │
  14. 252 │ │ port = self._get_free_port() │
  15. 253 │ │ self._open_app(port) │
  16. │ ❱ 254 │ │ interface.launch( │
  17. 255 │ │ │ favicon_path=os.path.join(os.path.dirname(__file__), 'assets/nvidia_logo.png │
  18. │ 256 │ │ │ show_api=False, │
  19. │ 257 │ │ │ server_port=port, │
  20. │ │
  21. │ C:\ai-NVIDIA\env_nvd_rag\lib\site-packages\gradio\blocks.py:1990 in launch │
  22. │ │
  23. │ 1987 │ │ │ and not networking.url_ok(self.local_url) │
  24. │ 1988 │ │ │ and not self.share │
  25. │ 1989 │ │ ): │
  26. │ ❱ 1990 │ │ │ raise ValueError( │
  27. │ 1991 │ │ │ │ "When localhost is not accessible, a shareable link must be created. Ple │
  28. │ 1992 │ │ │ ) │
  29. │ 1993 │
  30. ╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
  31. ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True or check your
  32. proxy settings to allow access to localhost.

其中核心为:

ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True or check your
proxy settings to allow access to localhost.

说明:

根据错误信息和代码片段,正在尝试运行一个基于Gradio库构建的应用程序(gradio.blocks.py 文件),并且在尝试启动本地服务器并渲染用户界面时遇到了问题。错误提示指出由于本地主机无法访问,因此要求创建一个可共享链接,并建议通过设置 share=True 来解决。

要解决这个问题,请找到在 app.py 或者初始化 Gradio 接口的地方,并确保在调用相关方法启动应用时包含了 share=True 参数。例如,在 user_interface.py 文件中的第 254 行,应该有一个类似于以下的调用:

interface.launch(..., share=True, ...)

这样当本地主机不可达时,Gradio 将尝试创建一个可以通过网络访问的临时公共 URL。请确认防火墙和代理设置允许对外部访问,并且在必要时允许对本地主机的访问。同时,注意在某些情况下,启用 share=True 可能需要额外的权限或配置,比如需要有效的互联网连接来托管临时服务器。

解决:

找到安装这个Ai的路径

在这个根路径后面直接添加路径

\RAG\trt-llm-rag-windows-main\ui

找到如图所示的路径下面: 

 编辑user_interface.py文件

在这里追加属性:

share=True

 保存文件。开启科学上网环境,重启尝试。

可以正常交互!完成部署!问题解决。 

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

闽ICP备14008679号