why don't you work in virtualenv? I just create a new mezzanine project in ubuntu 14.04 and python3.4 with these commands
sudo apt-get install python3 python3-pip3 sudo pip3 install virtualenv virtualenvwrapper and then you don't need sudo commands continue in virutualenv # to crate virtualenv with name mezzvenv mkvirtualenv mezzvenv # install mezzanine in virtualenv pip install mezzanine # or install latest development version from github pip install -e git+https: //github.com/stephenmcd/mezzanine.git@master#egg=Mezzanine and proceed with mezzanine-project , .. if you want to activate virtualenv use workon mezzvenv and to deactivate virtualenv use deactivate or active another virtualenv. -- 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.
