我刚开始使用Python项目并决定使用PyDev。但是,当我键入import termios
时,Eclipse / PyDev会抱怨未解析的导入。
我的口译员设置:
在终端中,它有效:
[thomas@archbox ~]$ python3
Python 3.3.2 (default, Sep 6 2013, 09:30:10)
[GCC 4.8.1 20130725 (prerelease)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import termios
>>> termios
<module 'termios' from '/usr/lib/python3.3/lib-dynload/termios.cpython-33m.so'>
>>> from sys import stdin
>>> termios.tcgetattr(stdin)
(...)
>>>
如果重要的话,我在Arch Linux上。