Skip to content

Commit

Permalink
Add windows venv activate command to CONTRIBUTING.md (#1880)
Browse files Browse the repository at this point in the history
Add windows venv activate command to `CONTRIBUTING.md`
  • Loading branch information
aneesh-joshi authored and menshikh-iv committed Feb 7, 2018
1 parent caed7d0 commit 9c6090e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ Also, please check the [Gensim FAQ](https://github.com/RaRe-Technologies/gensim/
2. Clone your fork: `git clone https://github.com/<YOUR_GITHUB_USERNAME>/gensim.git`
3. Create a new branch based on `develop`: `git checkout -b my-feature develop`
4. Setup your Python enviroment
- Create a new [virtual environment](https://virtualenv.pypa.io/en/stable/): `pip install virtualenv; virtualenv gensim_env; source gensim_env/bin/activate`
- Create a new [virtual environment](https://virtualenv.pypa.io/en/stable/): `pip install virtualenv; virtualenv gensim_env` and activate it:
- For linux: `source gensim_env/bin/activate`
- For windows: `gensim_env\Scripts\activate`
- Install Gensim and its test dependencies in [editable mode](https://pip.pypa.io/en/stable/reference/pip_install/#editable-installs):
- For linux: `pip install -e .[test]`
- For windows: `pip install -e .[test-win]`
Expand Down

0 comments on commit 9c6090e

Please sign in to comment.