3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

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

Posted at

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

参照

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?