2016-06-26 10 views
0

getch 모듈을 설치하는 데 문제가 있습니다. 내가 명령 pip install getch을 사용하면getch 모듈 Python 3.5 설치 중 오류가 발생했습니다.

나는 다음과 같은

C:\Users\jpyam_000>pip install getch 
Collecting getch 
    Using cached getch-1.0.tar.gz 
Building wheels for collected packages: getch 
    Running setup.py bdist_wheel for getch ... error 
    Complete output from command c:\users\jpyam_000\appdata\local\programs\python\python35-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\JPYAM_~1\\AppData\\Local\\Temp\\pip-build-gpiafze6\\getch\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d C:\Users\JPYAM_~1\AppData\Local\Temp\tmpryw1aohjpip-wheel- --python-tag cp35: 
    running bdist_wheel 
    running build 
    running build_ext 
    building 'getch' extension 
    creating build 
    creating build\temp.win32-3.5 
    creating build\temp.win32-3.5\Release 
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -I/usr/local/include -I/usr/include -Ic:\users\jpyam_000\appdata\local\programs\python\python35-32\include -Ic:\users\jpyam_000\appdata\local\programs\python\python35-32\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\8.1\include\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\winrt" /Tcgetchmodule.c /Fobuild\temp.win32-3.5\Release\getchmodule.obj 
    getchmodule.c 
    getchmodule.c(2): fatal error C1083: Cannot open include file: 'termios.h': No such file or directory 
    error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2 

    ---------------------------------------- 
    Failed building wheel for getch 
    Running setup.py clean for getch 
Failed to build getch 
Installing collected packages: getch 
    Running setup.py install for getch ... error 
    Complete output from command c:\users\jpyam_000\appdata\local\programs\python\python35-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\JPYAM_~1\\AppData\\Local\\Temp\\pip-build-gpiafze6\\getch\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record C:\Users\JPYAM_~1\AppData\Local\Temp\pip-1ybqkxk4-record\install-record.txt --single-version-externally-managed --compile: 
    running install 
    running build 
    running build_ext 
    building 'getch' extension 
    creating build 
    creating build\temp.win32-3.5 
    creating build\temp.win32-3.5\Release 
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -I/usr/local/include -I/usr/include -Ic:\users\jpyam_000\appdata\local\programs\python\python35-32\include -Ic:\users\jpyam_000\appdata\local\programs\python\python35-32\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\8.1\include\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\winrt" /Tcgetchmodule.c /Fobuild\temp.win32-3.5\Release\getchmodule.obj 
    getchmodule.c 
    getchmodule.c(2): fatal error C1083: Cannot open include file: 'termios.h': No such file or directory 
    error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2 

    ---------------------------------------- 
Command "c:\users\jpyam_000\appdata\local\programs\python\python35-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\JPYAM_~1\\AppData\\Local\\Temp\\pip-build-gpiafze6\\getch\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record C:\Users\JPYAM_~1\AppData\Local\Temp\pip-1ybqkxk4-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\JPYAM_~1\AppData\Local\Temp\pip-build-gpiafze6\getch\ 

C:\Users\jpyam_000> 

, 나는이에 대한 몇 가지 도움이 필요하세요 얻을. 고맙습니다.

답변

1

getch 모듈은 Windows와 호환되지 않습니다.

Windows 호환 대안을 the module's pypi page에 메모를 읽어

힌트 : Windows에서 사용할 수 :

import msvcrt 
# ... 
char = msvcrt.getch() 
# or, to display it on the screen 
char = msvcrt.getche() 

을 표준 라이브러리의 대안으로이 모듈

관련 문제