Skip to content

Commit 3920add

Browse files
authored
Update setup.md
1 parent 6856ae5 commit 3920add

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

docs/setup.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,18 @@ $ cd flask-base
1111

1212
```
1313
$ pip install virtualenv
14-
$ virtualenv env
14+
$ virtualenv -p /path/to/python3.x/installation env
1515
$ source env/bin/activate
1616
```
1717

18+
For mac users it will most likely be
19+
```
20+
$ pip install virtualenv
21+
$ virtualenv -p python3 env
22+
$ source env/bin/activate
23+
```
24+
Note: if you are using a python2.x version, point the -p value towards your python2.x path
25+
1826
## (If you're on a mac) Make sure xcode tools are installed
1927

2028
```
@@ -41,12 +49,6 @@ $ pip install -r requirements/dev.txt
4149

4250
## Other dependencies for running locally
4351

44-
You need to install [Foreman](https://ddollar.github.io/foreman/) and [Redis](http://redis.io/). Chances are, these commands will work:
45-
46-
```
47-
$ gem install foreman
48-
```
49-
5052
Mac (using [homebrew](http://brew.sh/)):
5153

5254
```
@@ -90,6 +92,6 @@ $ python manage.py add_fake_data
9092

9193
```
9294
$ source env/bin/activate
93-
$ foreman start -f Local
95+
$ honcho start -f Local
9496
```
9597

0 commit comments

Comments
 (0)