我试图在windows上调试一个Raspberry Pi程序。
Windows 7IDLE 3.6.2上,我没有错误地导入了包GPIOSimulator。我导入pip并执行sorted(["%s==%s" % (i.key, i.version) for i in pip.get_installed_distributions()])
并获取以下信息,以便安装了gpiosimulator

['flake8==3.4.1', 'gpiosimulator==0.1', 'gpiozero==1.4.0', 'keyboard==0.11.0', 'mccabe==0.6.1', 'pigpio==1.35', 'pip==9.0.1', 'pycodestyle==2.3.1', 'pyflakes==1.5.0', 'setuptools==28.8.0']

但是当我导入gpiosimulator时,我得到:
ModuleNotFoundError: No module named 'gpiosimulator'

我错过了什么?

最佳答案

模块未导入为gpiosimulator
您可以使用

import RPiSim, RPiSim.GPIO

See the API documentation for more information

关于python - Python导入包gpiosimulator失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46974818/

10-11 15:37