Skip to content

Commit

Permalink
Fixes fossasia#334 Add support for python virtualenv
Browse files Browse the repository at this point in the history
  • Loading branch information
jajodiaraghav authored and bhaveshAn committed Nov 22, 2017
1 parent 65a1f4e commit 83055e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
.cache/*
__pycache__/*
venv/*
node_modules/*
app/static/bower_components/*
.coverage
.idea/*
*.pyc
*.py.bak
*.swp
app/static/bower_components/
4 changes: 4 additions & 0 deletions docs/installation/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Running this tool requires installing the nodejs as well as python dependencies.
```
npm install -g bower
bower install
pip install virtualenv
virtualenv venv
source activate venv # Linux
venv\Scripts\activate # Windows
pip install -r requirements.txt
```

Expand Down

0 comments on commit 83055e6

Please sign in to comment.