gpt4 book ai didi

Python webbrowser 模块适用于 Windows 但不适用于 Ubuntu

转载 作者:太空宇宙 更新时间:2023-11-04 10:28:38 28 4
gpt4 key购买 nike

我在网上获得了这方面的基础和想法。当我在 Windows 10 而不是 Ubuntu 16.04 中运行它时,它运行良好。在 Ubuntu 上,它弄错了一个文件的 URL,并给我一个找不到文件的错误。这是用户编码错误、Ubuntu 问题还是 Python 问题?

更具体地说,这是一个 gvfs-open 错误。

import webbrowser

new = 2

choice = raw_input('Type site name:\n> ')
site = choice
url1 = 'www..com'

url = url1[:4] + site + url1[4:]

webbrowser.open(url,new=new)

这是结果。

$ gvfs-open: www.google.com: error opening location: error when getting information for file '/home/username/Documents/www.google.com: no such file or directory

最佳答案

我采纳了 Klaus D. 的建议并添加了 http://。现在它适用于两个操作系统。谢谢!

import webbrowser

new = 2
choice = raw_input('Type site name:\n> ')
site = choice
url1 = 'www..com'
url = 'http://' + url1[:4] + site + url1[4:]

webbrowser.open(url,new=new)

关于Python webbrowser 模块适用于 Windows 但不适用于 Ubuntu,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40901667/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com