Removed possible bashism. source -> .
This commit is contained in:
parent
ade490514d
commit
36f105c293
1 changed files with 7 additions and 3 deletions
|
|
@ -69,7 +69,11 @@ within::
|
||||||
Now you only have to activate it, whenever you work with it. On OS X and
|
Now you only have to activate it, whenever you work with it. On OS X and
|
||||||
Linux do the following::
|
Linux do the following::
|
||||||
|
|
||||||
$ source env/bin/activate
|
$ . env/bin/activate
|
||||||
|
|
||||||
|
(Note the whitespace between the dot and the script name. This means
|
||||||
|
execute this file in context of the shell. If the dot does not work for
|
||||||
|
whatever reason in your shell, try substituting it with ``source``)
|
||||||
|
|
||||||
If you are a Windows user, the following command is for you::
|
If you are a Windows user, the following command is for you::
|
||||||
|
|
||||||
|
|
@ -111,7 +115,7 @@ Get the git checkout in a new virtualenv and run in develop mode::
|
||||||
Initialized empty Git repository in ~/dev/flask/.git/
|
Initialized empty Git repository in ~/dev/flask/.git/
|
||||||
$ cd flask
|
$ cd flask
|
||||||
$ virtualenv env
|
$ virtualenv env
|
||||||
$ source env/bin/activate
|
$ . env/bin/activate
|
||||||
New python executable in env/bin/python
|
New python executable in env/bin/python
|
||||||
Installing setuptools............done.
|
Installing setuptools............done.
|
||||||
$ python setup.py develop
|
$ python setup.py develop
|
||||||
|
|
@ -127,7 +131,7 @@ To just get the development version without git, do this instead::
|
||||||
$ mkdir flask
|
$ mkdir flask
|
||||||
$ cd flask
|
$ cd flask
|
||||||
$ virtualenv env
|
$ virtualenv env
|
||||||
$ source env/bin/activate
|
$ . env/bin/activate
|
||||||
New python executable in env/bin/python
|
New python executable in env/bin/python
|
||||||
Installing setuptools............done.
|
Installing setuptools............done.
|
||||||
$ easy_install Flask==dev
|
$ easy_install Flask==dev
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue