Percol | Windows7 + Cygwin(64) 環境に percol をインストール


Percol | Windows7 + Cygwin(64) 環境に percol をインストール

概要

Windows7 + Cygwin(64) 環境に percol をインストールします。

前提

  • Python2.7 をインストール済み
  • cygwin, wget をインストール済み

手順

setuptools のインストール

※%Python% => python のインストールディレクトリ

$ cd %Python%
$ wget https://bootstrap.pypa.io/ez_setup.py
$ python ez_setup.py

pip のインストール

※最新版だとうまく動作しないため 1.4.1 を使用

$ easy_install https://pypi.python.org/packages/source/p/pip/pip-1.4.1.tar.gz
$ pip -V
pip 1.4.1 from /usr/lib/python2.7/site-packages/pip-1.4.1-py2.7.egg (python 2.7)

pecorl のインストール

$ pip install percol
Downloading/unpacking percol
  Downloading percol-0.0.7.tar.gz
  Running setup.py egg_info for package percol

Installing collected packages: percol
  Running setup.py install for percol
    changing mode of build/scripts-2.7/percol from 644 to 755

    changing mode of /usr/bin/percol to 755
Successfully installed percol
Cleaning up...

pip freezeでインストール内容を確認

$ pip freeze
git-remote-helpers==0.1.0
percol==0.0.7
wsgiref==0.1.2

percol の呼び出し確認

$ percol
                                    __
        ____  ___  ______________  / /
       / __ \/ _ \/ ___/ ___/ __ \/ /
      / /_/ /  __/ /  / /__/ /_/ / /
     / .___/\___/_/   \___/\____/_/
    /_/
                                 0.0.7

You did not give any inputs to percol. Check following typical usages and try again.

(1) Giving a filename,

 $ percol /var/log/syslog

(2) or specifying a redirection.

 $ ps aux | percol

参照