Skip to content

Commit c1d8666

Browse files
committed
Add ReadMe for requirements installation
1 parent 66e0be8 commit c1d8666

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
### Installation Instructions for Python, pip, brew, git, and virtualenv (or virtualenvwrapper)
2+
3+
4+
#### [Python 2.7](https://www.python.org/downloads/)
5+
6+
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.
7+
8+
If you're a WINDOWS user, [download the latest 2.* version from here](https://www.python.org/downloads/release/python-2710/).
9+
10+
#### [Pip](https://en.wikipedia.org/wiki/Pip_%28package_manager%29)
11+
12+
If "pip" did not come with your Python installation, you can [GET PIP HERE](https://pip.pypa.io/en/latest/installing/), and make sure it's on your path.
13+
14+
#### [Homebrew](http://brew.sh/) + [Git](http://git-scm.com/) (OPTIONAL)
15+
16+
(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.)
17+
18+
```bash
19+
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
20+
brew update
21+
brew install git
22+
```
23+
24+
(WINDOWS users: Skip the Homebrew part and [download Git here](http://git-scm.com/download).)
25+
26+
#### [Virtualenv](http://virtualenv.readthedocs.org/en/latest/) or [Virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/)
27+
28+
Mac: (The old regular way):
29+
30+
```bash
31+
sudo easy_install virtualenv
32+
```
33+
34+
Mac: (The new fancy way):
35+
36+
```bash
37+
sudo easy_install virtualenvwrapper
38+
```
39+
40+
Windows:
41+
42+
```bash
43+
pip install virtualenv
44+
```

0 commit comments

Comments
 (0)