For some reason, I decided to install pandas on old system-level Python. I didn't even have pip ...
$ su
# yum install python-pip
# pip install --upgrade pip
# wget https://bootstrap.pypa.io/ez_setup.py -O - | python #Upgraded setuptools
# pip install importlib
# pip install numpy==1.7.0
# pip install matplotlib==1.0.1
# pip install pandas==0.16.2
# pip install xlsxwriter
--I feel like I didn't pip properly without upgrading setuptools ...
――I installed it by specifying the version, but I feel that it will be installed in a higher version. In particular, matplotlib has an old one for various reasons.
-=> After all, re-install the final version 1.4.3 for 2.6 series [^ 1].
--xlsxwriter
does not need to be included if you do not intend to output Excel with pandas
.
[^ 1]: The explanation is here
Recommended Posts