将facebook_connect文件放在我的应用程序中的位置?

时间:2012-09-28 09:40:38

标签: django django-facebook

我使用 facebook friends app 在我的应用中邀请好友。所以我想知道我必须将其文件放在我的应用程序中,因为它有模式,视图管理器,管理员,设置,网址和模板文件。

我不确定,但可能只是将整个应用程序保留在项目中!但它对我不起作用,这就是为什么我问这个问题。

以下是Github项目:https://github.com/barszczmm/django-easy-friends

1 个答案:

答案 0 :(得分:0)

什么是facebook好友应用?你能提供链接吗?通常,安装应用程序的最佳方法是设置虚拟环境(http://www.virtualenv.org/en/latest/index.html),然后在那里安装您的应用程序(以及Django和您需要的其他所有内容)

sudo apt-get install python-virtualenv python-pip
virtualenv django-env
./django-env/bin/activate
pip install Django
pip install -e git://github.com/barszczmm/django-easy-friends.git#egg=django-easy-friends
# follow the instructions in the django-easy-friends docs
相关问题