jmcnamara / XlsxWriter

A Python module for creating Excel XLSX files.
https://xlsxwriter.readthedocs.io
BSD 2-Clause "Simplified" License
3.61k stars 630 forks source link

Isn't XlsWriter in pip repositories? #276

Closed revernus closed 9 years ago

revernus commented 9 years ago

I can't install XlsWriter using pip, on Windows 7 using Python 2.7.9 32 bit:

pip install XlsWriter Collecting XlsWriter Could not find a version that satisfies the requirement XlsWriter (from versions: ) No matching distribution found for XlsWriter

If I use lowercase it remains the same. Searching for XlsWriter returns nothing also:

pip search XlsWriter

So, isn't XlsWriter in pip repositores? Or am I doing something wrong? Thanks for the help in advance!

jmcnamara commented 9 years ago

You have a typo. The module is called XlsxWriter. Try:

pip install XlsxWriter
revernus commented 9 years ago

My bad, it was a typo indeed. Everything is working just fine. Thanks for your help!