在 Windows XP SP3 上安装 PySerial 2.6
好的,我正在尝试在我的 Windows XP SP3 计算机上安装 PySerial 2.6。解压 PySerial 下载并运行 setup.py 文件后,出现此错误。
C:\PYSERIAL\dist\pyserial-2.6\setup.py
Traceback (most recent call last):
File "C:\PYSERIAL\dist\pyserial-2.6\setup.py", line 44, in <module>
open(os.path.join('serial', '__init__.py')).read()).group(1)
IOError: [Errno 2] No such file or directory: 'serial\\init_.py'
我没有看到问题所在。在与 setup.py 相同的目录中有一个名为“serial”的文件,并且
__init__.py
位于该文件内。那么出了什么问题呢?我坐在这里看着目录里的文件!
Ok, I am trying to install PySerial 2.6 on my windows XP SP3 machine. After having unpacked the PySerial download and running the setup.py file I get this error.
C:\PYSERIAL\dist\pyserial-2.6\setup.py
Traceback (most recent call last):
File "C:\PYSERIAL\dist\pyserial-2.6\setup.py", line 44, in <module>
open(os.path.join('serial', '__init__.py')).read()).group(1)
IOError: [Errno 2] No such file or directory: 'serial\\init_.py'
I don't see the problem. There is a file in the same directory as setup.py called 'serial' and
__init__.py
is inside that file. So whats going wrong? I'm sitting here looking at the file in the directory!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用了
文件所在的 url,这一切都是自动处理的。
I used
and the url where the file was located, it was all taken care of automatically.