Skip to content

Commit

Permalink
Remove instructions for virtualenvwrapper
Browse files Browse the repository at this point in the history
I haven't tested them, and I don't think virtualenvwrapper is particularly necessary / helpful.
  • Loading branch information
wlach authored Jun 14, 2020
1 parent d6c1c28 commit 11eeef6
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,25 +39,14 @@ Want to hack on mozregression ? Cool!
### Installing dependencies

To make setup more deterministic, we have provided requirements files to use a known-working
set of python dependencies. You can install these inside a virtual environment
to create a development environment.
set of python dependencies. From your mozregression checkout, you can install these inside
a virtual development environment.

This is a two step process:

1. If you don't have them already, install [virtualenv](https://virtualenv.pypa.io/en/stable/)
or [virtualenvwrapper](https://virtualenvwrapper.readthedocs.org/en/latest/).
1. If you don't have it already, install [virtualenv](https://virtualenv.pypa.io/en/stable/).

2. Install dependencies:

With virtualenvwrapper:

```bash
mkvirtualenv -p /usr/bin/python3 mozregression
pip install -r requirements/all.txt
pip install -e .
```

Or with virtualenv: ::
2. Activate virtualenv and install dependencies:

```bash
virtualenv -p /usr/bin/python3 venv
Expand Down

0 comments on commit 11eeef6

Please sign in to comment.