Skip to content

Update instructions for pip installation #236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Platform-Documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ On Linux and Mac OS we recommend installing and updating cctrl via pip. *cctrl*
$ sudo pip install -U cctrl
~~~

If you don't have pip you can install pip via easy_install (on Linux usually part of the python-setuptools package) and then install cctrl.
If you don't have pip, you can install it either using packages from
your distribution or following the instructions in
[pip documentation](https://pip.pypa.io/en/stable/installing/). For
example, on Ubuntu, use:

~~~
$ sudo easy_install pip
$ sudo apt-get install python-pip python-dev
$ sudo pip install -U cctrl
~~~

Expand Down
11 changes: 9 additions & 2 deletions Quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,18 @@ Install Git from the [official site](http://git-scm.com/) or your package reposi
**Linux/Mac OS X:** We recommend installing cctrl via pip.

~~~bash
# if you don't have pip yet
$ sudo easy_install pip
$ sudo pip install cctrl
~~~

If you don't have pip, you can install it either using packages from
your distribution or following the instructions in
[pip documentation](https://pip.pypa.io/en/stable/installing/). For
example, on Ubuntu, use:

~~~bash
$ sudo apt-get install python-pip python-dev
~~~

**Windows:** Please download the provided [installer](https://download.cloudcontrolled.com/windows).

## Create a User Account (if you haven't already)
Expand Down