File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff 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-
5052Mac (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
You can’t perform that action at this time.
0 commit comments