私は Python 2.5 を使用しています (そしてそれを使い続ける必要があります)。既に xlrd 0.8.0 と xlwt 0.7.2 をダウンロードしており、どちらも正常に動作しているようです。
Excel スプレッドシートを読み書きする必要があるため、xlutils も追加する必要があると考えています。問題は、今のところインストールできないことです。
私はピップを持っていて、簡単なことを試しました:
pip install xlutils
それはxlutilsを実行してダウンロードしましたが、ハングアップしました:
Downloading/unpacking xlutils
Downloading xlutils-1.6.0.tar.gz (54Kb): 54Kb downloaded
Running setup.py egg_info for package xlutils
Downloading/unpacking xlrd>=0.7.2 (from xlutils)
Downloading xlrd-0.9.2.tar.gz (167Kb): 167Kb downloaded
Running setup.py egg_info for package xlrd
Traceback (most recent call last):
File "<string>", line 14, in <module>
File "C:\Python25\Lib\site-packages\xlutils-1.6.0\build\xlrd\setup.py", li
ne 8, in <module>
raise Exception("This version of xlrd requires Python 2.6 or above. "
Exception: This version of xlrd requires Python 2.6 or above. For older versions of Python, you can use the 0.8 series.
... [snipping some]
----------------------------------------
Command python setup.py egg_info failed with error code 1 in C:\Python25\Lib\sit
e-packages\xlutils-1.6.0\build\xlrd
そのため、新しい xlrd ( Python 2.5では使用できません) をダウンロードしようとしていると考えましたが、既に xlrd がインストールされているため、それが中断されます。
次に、 https: //pypi.python.org/pypi/xlutils から xlutils をダウンロードして、7zip で解凍し、xlutils フォルダーを Python25>Lib>site-packages の下に置き、そこに cd して、実行しました。
python setup.py install
しかし、それはcmdウィンドウに次のエラーを表示します:
C:\Python25\Lib\site-packages\xlutils-1.6.0>python setup.py install
Traceback (most recent call last):
File "setup.py", line 5, in <module>
from setuptools import setup
ImportError: No module named setuptools
では、どうすればこれをインストールできますか?