安装visdom出现Downloading scripts, this may take a little while
发布日期:2021-05-04 05:12:12 浏览次数:11 分类:技术文章

本文共 1397 字,大约阅读时间需要 4 分钟。

在启动visdom服务时遇到如下情况,长时间无反应

Microsoft Windows [版本 10.0.18363.657](c) 2019 Microsoft Corporation。保留所有权利。C:\Users\UserName>python -m visdom.serverD:\Anaconda3\lib\site-packages\visdom\server.py:39: DeprecationWarning: zmq.eventloop.ioloop is deprecated in pyzmq 17. pyzmq now works with default tornado and asyncio eventloops.  ioloop.install()  # Needs to happen before any tornado imports!Checking for scripts.Downloading scripts, this may take a little while

解决办法

  1. 找到visdom模块安装位置
    其位置为pythonanaconda安装目录下\Lib\site-packages\visdon
├─static│  ├─css│  ├─fonts│  └─js├─__pycache__├─__init__.py├─__init__.pyi├─py.typed├─server.py└─VERSION
可在`python`或`anaconda`安装目录下搜索找到
  1. 修改文件server.py
    修改函数download_scripts_and_run,将download_scripts()注释掉
    该函数位于全篇末尾,1917行
def download_scripts_and_run():    # download_scripts()    main()if __name__ == "__main__":    download_scripts_and_run()
  1. 替换文件
    下载文件解压后,将static文件覆盖到\visdon\static文件夹下

至此,该问题解决完毕。

使用命令python -m visdom.server开启服务

Microsoft Windows [版本 10.0.18363.657](c) 2019 Microsoft Corporation。保留所有权利。C:\Users\UserName>python -m visdom.serverD:\Anaconda3\lib\site-packages\visdom\server.py:39: DeprecationWarning: zmq.eventloop.ioloop is deprecated in pyzmq 17. pyzmq now works with default tornado and asyncio eventloops.  ioloop.install()  # Needs to happen before any tornado imports!It's Alive!INFO:root:Application StartedYou can navigate to http://localhost:8097
上一篇:github上fork别人的代码之后,如何保持和原作者同步的更新
下一篇:一文看懂区块链技术

发表评论

最新留言

哈哈,博客排版真的漂亮呢~
[***.90.31.176]2025年03月13日 12时31分22秒