Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small doc fix for virtualenv bootstrap setup #60

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ The first step in fixing a bug is getting this `buildout <https://github.com/plo
To set up a plone 5 development environment::

> cd ~/buildouts # or wherever you want to put things
> git clone -b 5.0 https://github.com/plone/buildout.coredev ./plone5devel
> git clone -b 5.0 https://github.com/plone/buildout.coredev ./plone5devel
> virtualenv --no-site-packages plone5devpy
> cd plone5devel
> pip install -r requirements.txt
> buildout boostrap
> ../plone5devpy/bin/pip install -r requirements.txt
> ../plone5devpy/bin/buildout bootstrap
> bin/buildout -v

If you run into issues in this process, please see the doc :doc:`issues`.
Expand Down