Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
Updated install command
Browse files Browse the repository at this point in the history
This is what you need for newer pips.
Also, some packages are gone from PyPI so we need pyrepo.
  • Loading branch information
kumar303 committed Feb 28, 2014
1 parent ad5bd74 commit e529119
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -37,7 +37,7 @@ test_failed:
update:
git checkout master && git pull && git submodule update --init --recursive
pushd vendor && git pull && git submodule update --init && popd
pip install --no-deps --exists-action=w --download-cache=/tmp/pip-cache -r requirements/dev.txt
pip install --no-deps --exists-action=w --download-cache=/tmp/pip-cache -r requirements/dev.txt --find-links https://pyrepo.addons.mozilla.org/ --allow-external PIL --allow-unverified PIL
schematic migrations
npm install

Expand Down
12 changes: 11 additions & 1 deletion docs/topics/install-zamboni/installation.rst
Expand Up @@ -149,9 +149,19 @@ To get back into the zamboni environment later, type::
Finish the install
~~~~~~~~~~~~~~~~~~

First make sure you have a recent `pip`_ for security reasons.
From inside your activated virtualenv, install the required python packages::

pip install --no-deps -r requirements/dev.txt
make update

This runs a command like this::

pip install --no-deps -r requirements/dev.txt --exists-action=w \
--find-links https://pyrepo.addons.mozilla.org/ \
--allow-external PIL --allow-unverified PIL \
--download-cache=/tmp/pip-cache

.. _pip: http://www.pip-installer.org/en/latest/

If you are on a linux box and get a compilation error while installing M2Crypto
like the following::
Expand Down

0 comments on commit e529119

Please sign in to comment.