1
0
Fork 0

Add a section for linux install in Readme.

This commit is contained in:
Amjith Ramanujam 2014-11-30 22:14:08 -08:00
parent 5cc3dd0c91
commit df160772fc
2 changed files with 27 additions and 1 deletions

View File

@ -56,7 +56,33 @@ If pip is not installed check if easy_install is available on the system.
Linux:
------
Check if pip is already available in your system.
::
$ which pip
If it does then install pgcli using the pip command as follows:
::
$ sudo pip install pgcli
If it doesn't exist, use your linux package manager to install `pip`. This might look something like:
::
$ sudo apt-get install python-pip
or
$ sudo yum install python-pip
Then you can install pgcli:
::
$ sudo pip install pgcli
Usage

View File

@ -19,7 +19,7 @@ setup(
url='https://github.com/amjith/pgcli',
packages=find_packages(),
description=description,
long_description=open('Readme.rst').read(),
long_description=open('README.rst').read(),
install_requires=[
'Click',
'prompt_toolkit',