Windows에 Python의 XlsxWriter 모듈을 설치하는 방법

不言
풀어 주다: 2018-05-04 15:55:27
원래의
6097명이 탐색했습니다.

이 글은 주로 Windows에서 Python의 XlsxWriter 모듈을 설치하는 방법을 소개합니다. 이제 이를 공유해 보겠습니다.

Windows 환경에서 Python의 XlsxWriter 모듈을 설치하는 방법은 매우 간단합니다. , 하지만 제 부주의로 인해 한 글자를 놓쳤고, 이로 인해 많은 실수가 발생했습니다. . .

1. pip 명령을 통해 설치합니다.

C:\Users\Administrator>pip install XlsWriter 
Collecting XlsWriter 
 Could not find a version that satisfies the requirement XlsWriter (from versions: ) 
No matching distribution found for XlsWriter 
You are using pip version 7.1.2, however version 8.1.1 is available. 
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
로그인 후 복사

2. pip 버전이 너무 낮다고 착각해서 오류 메시지에 나온 안내에 따라 pip를 업데이트했습니다

먼저 다운로드되는 것을 볼 수 있습니다. , 이전 버전이 먼저 제거되고 마지막으로 새 버전의 pip가 설치되는 것으로 감지됩니다.

C:\Users\Administrator>python -m pip install --upgrade pip 
Collecting pip 
 Downloading pip-8.1.1-py2.py3-none-any.whl (1.2MB) 
 100% |████████████████████████████████| 1.2MB 61kB/s 
Installing collected packages: pip 
 Found existing installation: pip 7.1.2 
 Uninstalling pip-7.1.2: 
  Successfully uninstalled pip-7.1.2 
Successfully installed pip-8.1.1
로그인 후 복사

3. 다시 설치를 시도했지만 여전히 오류가 발생했습니다. 이상하다고 생각했는데 자세히 살펴보니 로우를 만들었습니다. XlsxWriter가 아닌 XlsxWriter여야 합니다. XlsWriter에 x 문자가 없어 설치에 필요한 XlsWriter 버전을 찾을 수 없습니다.

C:\Users\Administrator>pip install XlsWriter 
Collecting XlsWriter 
 Could not find a version that satisfies the requirement XlsWriter (from versions: ) 
No matching distribution found for XlsWriter
로그인 후 복사

4. 이번에 드디어 성공적으로 다운로드하고 Laughing을 설치했습니다.

C:\Users\Administrator>pip install XlsxWriter 
Collecting XlsxWriter 
 Downloading XlsxWriter-0.8.6-py2.py3-none-any.whl (134kB) 
 100% |████████████████████████████████| 143kB 26kB/s 
Installing collected packages: XlsxWriter 
Successfully installed XlsxWriter-0.8.6
로그인 후 복사

5. 또 다른 방법은 eays_install을 통해 XlsxWriter 모듈을 설치하는 것입니다.

C:\Users\Administrator>easy_install XlsxWriter 
Searching for XlsxWriter 
Best match: XlsxWriter 0.8.6 
Adding XlsxWriter 0.8.6 to easy-install.pth file 
 
Using c:\python27\lib\site-packages 
Processing dependencies for XlsxWriter 
Finished processing dependencies for XlsxWriter
로그인 후 복사

6. 다음으로 설치가 성공했는지 확인합니다.

여기에서 cmd를 열고 python을 입력하여 Python 대화형 환경으로 들어갑니다.

가장 쉬운 방법은 이 모듈을 가져오는 것입니다. 오류가 보고되지 않으면 설치가 성공한 것입니다.

여기서 강조해야 할 점은 위의 모듈 이름은 XlsxWriter이지만 여기로 가져오면 문자 하나가 다른 한 모두 소문자 xlsxwriter라는 것입니다.

C:\Users\Administrator>python 
Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit (AMD64)] on win32 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import xlsxwriter 
>>>
로그인 후 복사

파이썬의 다양한 모듈을 설치하는 것이 매우 편리하다고 말씀드리고 싶습니다.

XlsxWriter 모듈에 대한 자세한 참고 정보는 https://xlsxwriter.readthedocs.io/에서 확인할 수 있습니다.

관련 권장 사항:

Python을 사용하여 XlsxWriter를 구현하여 Excel 파일 생성 및 편집

Python의 xlsxwriter 라이브러리에 대한 간단한 분석


위 내용은 Windows에 Python의 XlsxWriter 모듈을 설치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!