(hello)➜ hello pip install django
Requirement already satisfied (use --upgrade to upgrade): django in /Users/michael/.virtualenvs/hello/lib/python2.7/site-packages
(hello)➜ hello python manage.py hello
python: can't open file 'manage.py': [Errno 2] No such file or directory
(hello)➜ hello
http://aaronpresley.com/setting-django-mac-os-x-10-9/ 照着这篇文章,到了python manage.py hello卡主了,当前目录没有manage.py,怎么执行呢?
1
ellipse42 2015-01-27 22:17:46 +08:00 1
建议换个教程
|
2
fu82581983 OP @ellipse42 有没有osx 上安装django比较新的教程?
|
3
glasslion 2015-01-27 22:47:01 +08:00
为什么不去看官方文档?
|
4
fu82581983 OP @glasslion 看了啊
https://docs.djangoproject.com/en/1.7/topics/install/#installing-official-release If you’re using Linux, Mac OS X or some other flavor of Unix, enter the command sudo pip install Django at the shell prompt. If you’re using Windows, start a command shell with administrator privileges and run the command pip install Django. This will install Django in your Python installation’s site-packages directory. If you’re using a virtualenv, you don’t need sudo or administrator privileges, and this will install Django in the virtualenv’s site-packages directory. 然后我不知道接下来怎么搞了 |
5
Jat001 2015-01-27 23:10:52 +08:00
django 就是一个框架,这样就算安装好了啊,接下来就不是安装了。
https://docs.djangoproject.com/en/1.7/intro/tutorial01/ |
6
fu82581983 OP @Jat001 原来这样就算ok了,谢谢!
|
7
passluo 2015-01-28 00:26:33 +08:00 1
英文不好的话,可以看这个。虽然比较老了。
http://djangobook.py3k.cn/2.0/ |