如何在PyDev中添加termios?

时间:2013-11-17 19:46:47

标签: python eclipse pydev python-import termios

我刚开始使用Python项目并决定使用PyDev。但是,当我键入import termios时,Eclipse / PyDev会抱怨未解析的导入。

我的口译员设置:

This is my interpreters setup

在终端中,它有效:

[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上。

0 个答案:

没有答案