ImportError : _winreg라는 모듈이 없음, MacOS X에 pypiwin32 == 219 설치 중


0

설치하려고합니다. pypiwin32==219 내 가상 환경의 requirements.txt 파일에서.

requirements.txt

pypiwin32==219

나는 가상 환경을 설정했다. denv 나는 일하고있다.

(denv) Nehas-MacBook-Pro:dash_pdf neha$ pip install -r requirements.txt

이 추적 오류가 있습니다.

Complete output from command python setup.py egg_info:
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/private/var/folders/_y/g09fpxn13xq7z6ptmq3095dm0000gn/T/pip-install-7zp59n5n/pypiwin32/setup.py", line 121
    print "Building pywin32", pywin32_version
                           ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Building pywin32", pywin32_version)?

이 명령은 Python 버전 문제이므로 명령으로 전환했습니다.

(denv) Nehas-MacBook-Pro:dash_pdf neha$ pip2 install -r requirements.txt

이 추적 오류가 발생합니다.

Using cached https://files.pythonhosted.org/packages/2b/ca/5c086c18de8f70222787b3e824e755b68d99272531522e77bb381d4f60c8/pypiwin32-219.zip
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/private/var/folders/_y/g09fpxn13xq7z6ptmq3095dm0000gn/T/pip-install-KEpN56/pypiwin32/setup.py", line 83, in <module>
    import _winreg
ImportError: No module named _winreg

나는 몇몇을 봤다. 나는 그것을 발견했다. _winreg 필수 Windows. 내가 얻을 수있는 방법 없어. pypiwin32==219 MacOS에서 작동합니까?

답변:


1

전체 pypiwin32 모듈에는 Windows가 필요합니다. 그것은 결국, Win32 API 파이썬 바인딩 - 없음 그것은 윈도우가 아닌 어떤 것에도 쓸모가있다.


당신의 대답에 감사드립니다. 이 문제를 해결하기 위해 Windows에서 VM을 설치하려고했지만 컴퓨터가 죽습니다. 내가 막 다른 골목에 다다른 것처럼 보입니다.
Vizag
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.