-
You'll need Python 2, pip and virtualenv available on your system. On a CentOS machine, you can install pip and virtualenv by:
yum install -y python-pip pip install virtualenv
-
Fork and close this repository
git clone http://github.com/<your_git_username>/simple-cli cd simple-cli
-
Create a virtualenv and install the requirements
virtualenv venv source ./venv/bin/activate pip install -r requirements.txt
-
Install the CLI in the virtual environment
pip install --editable .
-
Setup whatever IDE you prefer to work with. You can access the CLI in the terminal directly in the virtual environment