Skip to content

Commit d4303b0

Browse files
committed
Update the requirements ReadMe
1 parent 7370c94 commit d4303b0

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

help_docs/requirements_installation.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
### Installation Instructions for Python, pip, brew, git, and virtualenv (or virtualenvwrapper)
1+
## Installation Instructions for Python, pip, brew, git, and virtualenv (or virtualenvwrapper)
22

33

4-
#### [Python 2.7](https://www.python.org/downloads/)
4+
### [Python 2.7](https://www.python.org/downloads/)
55

66
If you're a MAC user, that should already come preinstalled on your machine. Although Python 3 exists, you'll want Python 2 (both of these major versions are being improved in parallel). Python 2.7.10 is the one I've been using on my Mac.
77

88
If you're a WINDOWS user, [download the latest 2.* version from here](https://www.python.org/downloads/release/python-2710/).
99

10-
#### [Pip](https://en.wikipedia.org/wiki/Pip_%28package_manager%29)
10+
### [Pip](https://en.wikipedia.org/wiki/Pip_%28package_manager%29)
1111

1212
If "pip" did not come with your Python installation, you can [GET PIP HERE](https://pip.pypa.io/en/latest/installing/).
1313

@@ -17,19 +17,27 @@ sudo easy_install pip
1717
```
1818
Then make sure it's on your path.
1919

20-
#### [Homebrew](http://brew.sh/) + [Git](http://git-scm.com/) (OPTIONAL)
20+
### [Homebrew](http://brew.sh/) (MAC-ONLY) (OPTIONAL)
2121

22-
(NOTE: You can download the SeleniumBase repository right from GitHub and skip all the git-related commands. That's probably the fastest way if you want to quickly get a live demo of this tool up and running.)
22+
Homebrew allows you to install things more easily, such as Git, Chromedriver, and PhantomJS.
2323

2424
```bash
2525
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2626
brew update
27+
```
28+
29+
### [Git](http://www.git-scm.com)
30+
31+
(NOTE: You can download the SeleniumBase repository right from GitHub and skip all the git-related commands. That's probably the fastest way if you want to quickly get a live demo of this tool up and running.)
32+
33+
MAC-ONLY: (This step only works if you installed Homebrew in the previous step)
34+
```bash
2735
brew install git
2836
```
2937

30-
(WINDOWS users: Skip the Homebrew part and [download Git here](http://git-scm.com/download).)
38+
(WINDOWS users: Skip the Homebrew part and [download Git here](http://git-scm.com/downloads).)
3139

32-
#### [Virtualenv](http://virtualenv.readthedocs.org/en/latest/) or [Virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/)
40+
### [Virtualenv](http://virtualenv.readthedocs.org/en/latest/) or [Virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/)
3341

3442
Mac: (The old regular way):
3543

0 commit comments

Comments
 (0)