Update Docs

This commit is contained in:
Michael Mintz 2017-10-27 15:19:11 -04:00
parent ca8f7eb240
commit 02dfbf8cbe
2 changed files with 16 additions and 2 deletions

View File

@ -148,7 +148,7 @@ cd SeleniumBase
### **Step 2:** Create a Virtual Environment
If you're not sure how to create one, **[follow these instructions](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/virtualenv_instructions.md)**.<br>For an overview of virtual environments and why it's good practice to use them, see **[http://docs.python-guide.org/en/latest/dev/virtualenvs/](http://docs.python-guide.org/en/latest/dev/virtualenvs/)**.
To create a virtual environment **[read this](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/virtualenv_instructions.md)**.<br>For an official overview of virtual environments, see **[http://docs.python-guide.org/en/latest/dev/virtualenvs/](http://docs.python-guide.org/en/latest/dev/virtualenvs/)**.
### **Step 3:** Install SeleniumBase

View File

@ -1,6 +1,20 @@
### Virtual Environment Setup Instructions
* If you haven't yet installed ``virtualenv`` or ``virtualenvwrapper``, **[follow these instructions first](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/requirements_installation.md#virtual_environment)**.
#### First install [VirtualEnv](http://virtualenv.readthedocs.org/en/latest/) or [VirtualEnvWrapper](http://virtualenvwrapper.readthedocs.org/en/latest/) (<i>if not installed</i>):
MAC / Linux:
```bash
sudo easy_install --upgrade virtualenv
sudo easy_install --upgrade virtualenvwrapper
```
WINDOWS:
```bash
pip install --upgrade virtualenv
pip install --upgrade virtualenvwrapper-win
```
#### Now use VirtualEnv or VirtualEnvWrapper to create a virtual environment:
MAC: