Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pyperclip 模块不允许我的 android 应用程序启动。只要我在手机上运行该应用程序,它就会关闭。它在 Windows 上运行良好。
使用 Kivy 编写应用程序 使用 Buildozer 打包 APK
import pyperclip as syscopy syscopy.copy("Hi There")
我有同样的问题。您的构建中有 log.txt 吗?如果是,请检查它是否是权限错误。如果是权限错误,则必须尝试输入代码,例如:
import pyperclip as syscopy try: syscopy.copy("Hi There") except(PermissionError): print("There is an error!")
希望它会奏效。