Hi there If you are going to contribute to testing of the new release Here is how I set up my 4 test environments on Ubuntu 14.04 using pyenv When you do the mezzanine-project commands make sure you don't put a dot '.' in the project name...
*Install pyenv* pip install --egg pyenv *Add these 3 lines to .bashrc* export PATH="$HOME/.pyenv/bin:$PATH" eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)" *Get build dependencies* sudo apt-get build-dep python2.7 python3.4 *Install the latest versions of Python* pyenv install 3.4.3 pyenv install 2.7.9 *Create 4 virtual environments* pyenv virtualenv 2.7.9 py2.7.9-dj1.7.7 pyenv virtualenv 2.7.9 py2.7.9-dj1.8 pyenv virtualenv 3.4.3 py3.4.3-dj1.7.7 pyenv virtualenv 3.4.3 py3.4.3-dj1.8 *Install the Django versions and Mezzanine* pyenv activate py2.7.9-dj1.7.7 pip install Django==1.7.7 pip install git+https://github.com/stephenmcd/mezzanine.git mezzanine-project mp-py279-dj177 (NO DOTS!) pyenv activate py2.7.9-dj1.8 pip install Django==1.8 pip install git+https://github.com/stephenmcd/mezzanine.git mezzanine-project mp-py279-dj18 (NO DOTS!) pyenv activate py3.4.3-dj1.7.7 pip install Django==1.7.7 pip install git+https://github.com/stephenmcd/mezzanine.git mezzanine-project mp-py343-dj177 (NO DOTS!) pyenv activate py3.4.3-dj1.8 pip install Django==1.8 pip install git+https://github.com/stephenmcd/mezzanine.git mezzanine-project mp-py343-dj18 (NO DOTS!) -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
