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.
菜鸟警报!
我想知道你如何导入一个模块(一个用 qpython 制作的)?我尝试创建一个新文件夹并添加一个 setup.py 然后尝试导入但只是得到关于找不到模块(或其他东西)的错误..
提前致谢
您的文件夹必须包含在 Path 变量中。您必须将路径附加到此变量中的文件夹。将以下行添加到项目主文件的顶部:
import sys sys.path.append(yourPath)
yourPath 必须是字符串类型。例如:
'/存储/sdcard0/我的文件夹'