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

Updating installation instructions. #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@ nosetests.xml

# Vagrant
/.vagrant/
contrib/vagrant/.Python
contrib/vagrant/include/
contrib/vagrant/share/
26 changes: 22 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,27 @@ Bootstrapping development with Vagrant
--------------------------------------

1. If required, install `Vagrant <http://downloads.vagrantup.com/>`_
2. From the project directory, run ``vagrant up``, and wait for initial bootstrapping.

The installer will automatically add vagrant to your system path so that
it is available in terminals. If it is not found, please try logging out
and logging back in to your system (this is particularly necessary
sometimes for Windows).

VirtualBox may also be required.

2. From the project directory, run ``vagrant up``, and wait for initial
bootstrapping.

This may take a long time (in the vicinity of an hour) and requires a large
download (in the vicinity of 1GB).

3. Connect to the VM using ``vagrant ssh``.
4. Change to ``/vagrant``.

4. Change to ``contrib/vagrant``.

5. Initialise virtualenv: ``virtualenv .``
6. Activate: ``./bin/activate``
7. Install requirements: ``pip install -r ./requirements.txt``

6. Activate: ``source contrib/vagrant/bin/activate``

7. Change to project directory root.
Install requirements: ``pip install -r ./requirements.txt``