LoginSignup
1
0

More than 5 years have passed since last update.

python2.6 への pandas のインストール

Last updated at Posted at 2017-02-18

訳あってシステムレベルの古い Python へ、 pandas をインストールする事に。pip すら入ってなかったよ、、、

$ su
# yum install python-pip
# pip install --upgrade pip
# wget https://bootstrap.pypa.io/ez_setup.py -O - | python  # 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
  • setuptools のバージョンアップしないと、まともに pip してくれなかった様な気が、、、
  • バージョン指定してインストールしたものの、もっと上のバージョンでも入る気がする。特に matplotlib は諸事情から古いものを入れた。
    • => 結局、2.6 系対応最終バージョンの 1.4.3 を入れなおす1
  • xlsxwriter は、 pandas でエクセル出力する気が無いなら入れる必要は無い。

  1. 説明はここ 

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0