Python:pdoc 无法启动浏览器
我有一个 Windows 批处理文件,内容如下:
"C:\Users\
在过去,这启动了 pdoc
Web 服务器和浏览器窗口。但是,我刚刚切换了 Python 发行版(现在在 Anaconda 上使用 pdoc 0.9.2)。现在,这个相同的批处理文件(只是更新了可执行路径)将我的部分文档转储到控制台并返回,而无需启动 Web 服务器。但是,我的另一个批处理文件:
"C:\Users\
工作正常。
I have a Windows batch file that says:
"C:\Users\<myname>\Anaconda3\Scripts\pdoc3.exe" <mymodule>
In the past, this launched the pdoc
web server and a browser window. However, I just switched Python distributions (now using pdoc 0.9.2 on Anaconda). Now, this same batch file (just with the executable path updated) dumps part of my documentation to the console and returns without launching a web server. However, my other batch file:
"C:\Users\<myname>\Anaconda3\Scripts\pdoc3.exe" -o ./docs <mymodule>
works fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,这有点愚蠢,但我错误地安装了
pdoc3
而不是pdoc
。删除pdoc3
并安装pdoc
解决了该问题。(我必须使用
pip
而不是conda
。提供的安装字符串conda install -c auto pdoc
不起作用。)OK, this is kinda dumb, but I had installed
pdoc3
instead ofpdoc
by mistake. Removingpdoc3
and installingpdoc
solved the problem.(I had to use
pip
instead ofconda
. The provided install stringconda install -c auto pdoc
didn't work.)