Skip to content

Commit 0ed53ee

Browse files
author
Foxlet
committed
Installing PIP - main_user.md
1 parent f7e8ed2 commit 0ed53ee

1 file changed

Lines changed: 28 additions & 15 deletions

File tree

docs/user/main_user.md

Lines changed: 28 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ We recommend using the stable releases of CloudBot that can be found [on the rel
1616

1717
#### Using HTTP
1818

19-
If you only have command-line access, you can use the following to get CloudBot onto your server.
19+
If you only have command-line access, run the following in your terminal:
2020

21-
**On Linux**:
21+
**On Linux:**
2222
```
2323
wget https://github.com/CloudBotIRC/CloudBot/archive/master.zip
2424
```
2525

26-
**On OS X**:
26+
**On OS X:**
2727
```
2828
curl -O https://github.com/CloudBotIRC/CloudBot/archive/master.zip
2929
```
@@ -42,24 +42,37 @@ If you only have command-line access, you can use the following to get CloudBot
4242
## 2 - Getting Python 3.4
4343
If you don't already have Python 3.4 installed on your server, the following explains how to do so for Linux and Mac OS X.
4444

45-
#### On Linux (Debian-based)
46-
Using the terminal
47-
```
48-
[sudo] apt-get install python python3.4-dev git libenchant-dev libxml2-dev libxslt-dev zlib1g-dev
49-
```
45+
**On Linux (Debian Based):**
46+
Run the following in your terminal:
47+
```
48+
[sudo] apt-get install python python3.4-dev git libenchant-dev libxml2-dev libxslt-dev zlib1g-dev
49+
```
5050

51-
#### On OS X
52-
Mac OS X already comes with Python 2.7 pre-installed, this is not sufficient for CloudBot. The latest binaries can be found at https://www.python.org/downloads/
51+
**On OS X:**
52+
Mac OS X already comes with Python 2.7 pre-installed, this is not sufficient for CloudBot. The latest binaries can be found at https://www.python.org/downloads/
5353

54-
#### On Windows
55-
You can download releases of Python 3.4 for Windows at https://www.python.org/downloads/
54+
**On Windows:**
55+
You can download releases of Python 3.4 for Windows at https://www.python.org/downloads/
5656

57-
#### On another OS (Solaris/BSD/ActivePython/etc)
58-
You can try compiling Python 3.4 from source, note however that you may run into issues with CloudBot or its dependencies (many of the Other OSs only support Python 2.x). You can find source at https://www.python.org/downloads/source/
57+
**On another OS (Solaris/BSD/ActivePython/etc):**
58+
You can try compiling Python 3.4 from source, note however that you may run into issues with CloudBot or its dependencies (many of the Other OSs only support Python 2.x).
59+
60+
You can find source at https://www.python.org/downloads/source/
5961

6062
## 3 - Get PIP
63+
PIP is suggested to make installation of CloudBot's dependencies easier.
6164

62-
Blahblah.
65+
**On Linux:**
66+
Run the following in your terminal:
67+
```
68+
wget https://bootstrap.pypa.io/get-pip.py
69+
[sudo] python3.4 get-pip.py
70+
```
71+
**On OS X:**
72+
Run the following in your terminal:
73+
```
74+
curl https://bootstrap.pypa.io/get-pip.py | sudo python3.4
75+
```
6376

6477
## CloudBot Depdendencies and APIs
6578

0 commit comments

Comments
 (0)