Reputation: 75
I try install Django-Shop on Openshift. In Openshift i created application with django, mysql. Problem is dependencies that demand pip then install django-shop. Second, I don't know how install pip's package - on server or local repo. I install django-shop on my local repo and push that changes on server with help git. Server refused work with change.
Upvotes: 0
Views: 80
Reputation: 2347
You must install dependencies using pip on server. If you install in localhost, it is not installed to git folder.
So login to openhsift rhc ssh appname
and when logged in, use pip install django-shop
. Or add django-shop
to setup.py file.
Upvotes: 0