Skip to content

Commit

Permalink
Specify Python version for virtualenv using option
Browse files Browse the repository at this point in the history
Specify Python version for virtualenv using option, not command alias,
as alias is not always present.

See https://community.plone.org/t/typo-in-online-plone-4-training-plone-org/2914
  • Loading branch information
jean authored and pbauer committed Oct 23, 2016
1 parent 92b75c1 commit 2267126
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Expand Up @@ -73,6 +73,10 @@ This changelog is only very rough. For the full changelog please refer to https:

- Fix reST lists [davisagli]

- Specify Python version for virtualenv using option, not command alias, as
alias is not always present [jean]


1.2.4 (2014-10-03)
------------------

Expand Down
4 changes: 2 additions & 2 deletions mastering_plone/about_mastering.rst
Expand Up @@ -172,7 +172,7 @@ To build the documentation follow these steps:
$ git clone https://github.com/plone/training.git --recursive
$ cd training
$ virtualenv-2.7 .
$ virtualenv --python=python2.7 .
$ source bin/activate
Now install dependencies and build.
Expand All @@ -191,7 +191,7 @@ Build new
$ git clone https://github.com/plone/training.git --recursive
$ cd training
$ virtualenv-2.7 .
$ virtualenv --python=python2.7 .
$ source bin/activate
$ pip install -r requirements.txt
$ make html
Expand Down
2 changes: 1 addition & 1 deletion plone_training_config/instructions.rst
Expand Up @@ -53,7 +53,7 @@ Set up Plone for the training like this if you use your own OS (Linux or Mac):
$ cd training
$ git clone https://github.com/collective/training_buildout.git buildout
$ cd buildout
$ virtualenv-2.7 py27 or virtualenv --python=python2.7 py27
$ virtualenv --python=python2.7 py27
Now you can run the buildout for the first time:

Expand Down

0 comments on commit 2267126

Please sign in to comment.