1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 14:48:49 +00:00

Issue#965 - added venv instructions to CONTRIBUTING.md

This commit is contained in:
shawnmcgraw 2019-10-11 16:12:44 -04:00
parent 4f165bf6df
commit 205b519241

View File

@ -26,6 +26,23 @@ fixes, etc.
# Developing
Create and activate Pyton 3 virtual environment.
```bash
python3 -m venv env
```
On Windows run:
```bash
env\Scripts\activate.bat
```
On Linux, Unix or Mac OS run:
```bash
source env/bin/activate
```
Install `The Fuck` for development:
```bash