Python论坛  - 讨论区

标题:[python-chinese] django 0.92 install,and other

2006年05月27日 星期六 17:46

=?ISO-2022-JP?B?GyRCQmdPOhsoQg==?= iexper at gmail.com
Sat May 27 17:46:59 HKT 2006

hi,Mr li and python(django) fans:

装了SVN客户端以后,直接把最新的开发版0.92下载了下来。
于是照您的教程试着安装,但后来在DJANGO上看到说不用安装了,直接拷到相关目录:

> Installing the development version
>
>    1.
>
>    Make sure you have Subversion <http://subversion.tigris.org/>installed.
>    2.
>
>    svn co http://code.djangoproject.com/svn/django/trunk/ django_src
>    3.
>
>    Symlink django_src/django so that django is within your Python
>    site-packages directory:
>
>    ln -s `pwd`/django_src/django
>    /usr/lib/python2.3/site-packages/django
>
>    (In the above line, change python2.3 to match your current Python
>    version.)
>
> You don't have to run python setup.py install.
>
于是我放到了这里:C:\Python25\Lib\site-packages

进入:C:\Python25\Lib\site-packages\django\bin
因为django-admin.py在这个目录。
>> django-admin.py startproject newtest
是的确生成了newtest目录。这是正常的。

可是我并不想把测试用的目录放在C:并且更不想放在python目录下。

我进入D:,再:


> D:\>python django-admin.py startproject newtest
> python: can't open file 'django-admin.py': [Errno 2] No such file or
> director
>
> D:\>django-admin.py startproject newtest
> 'django-admin.py' 不是内部或外部命令,也不是可运行的程序
> 或批处理文件。
>
?

请问LI兄怎么解决这个问题,3Q

-- 
IT民工
blog:http://www.iexper.com/blog/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060527/03f35b87/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月27日 星期六 19:18

limodou limodou at gmail.com
Sat May 27 19:18:23 HKT 2006

On 5/27/06, 大郎 <iexper at gmail.com> wrote:
>
> hi,Mr li and python(django) fans:
>
> 装了SVN客户端以后,直接把最新的开发版0.92下载了下来。
> 于是照您的教程试着安装,但后来在DJANGO上看到说不用安装了,直接拷到相关目录:
>
>
> >
> > Installing the development version
> >
> >
> >
> > Make sure you have Subversion installed.
> >
> >
> > svn co http://code.djangoproject.com/svn/django/trunk/
> django_src
> >
> >
> > Symlink django_src/django so that django is within your Python
> site-packages directory:
> >
> > ln -s `pwd`/django_src/django
> /usr/lib/python2.3/site-packages/django
> >
> > (In the above line, change python2.3 to match your current Python
> version.)
> >
> > You don't have to run python setup.py install.
>
> 于是我放到了这里:C:\Python25\Lib\site-packages

这与安装效果是一样的。但安装有一点不同,它会将django-admin.py安装到python的Scripts目录下去。然后将python的Scripts目录设置到PATH环境变量下,这样就可以在任何一个目录下执行django-admin.py了。这才是最方便的做法。
>
> 进入:C:\Python25\Lib\site-packages\django\bin
> 因为django-admin.py在这个目录。
> >> django-admin.py startproject newtest
> 是的确生成了newtest目录。这是正常的。
>
> 可是我并不想把测试用的目录放在C:并且更不想放在python目录下。
>
> 我进入D:,再:
>
>
> >
> >
> > D:\>python django-admin.py startproject newtest
> > python: can't open file 'django-admin.py': [Errno 2] No such file or
> director
> >
> > D:\>django-admin.py startproject newtest
> > 'django-admin.py' 不是内部或外部命令,也不是可运行的程序
> > 或批处理文件。
>
>>
> 请问LI兄怎么解决这个问题,3Q
>

-- 
I like python!
My Blog: http://www.donews.net/limodou
My Django Site: http://www.djangocn.org
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月27日 星期六 21:08

ygao ygao2004 at gmail.com
Sat May 27 21:08:29 HKT 2006

再想一想,我想你能解决这个问题。
如果你还不能,搜一下这个列表。


On 5/27/06, 大郎 <iexper at gmail.com> wrote:
>
>  hi,Mr li and python(django) fans:
>
> 装了SVN客户端以后,直接把最新的开发版0.92下载了下来。
> 于是照您的教程试着安装,但后来在DJANGO上看到说不用安装了,直接拷到相关目录:
>
> > Installing the development version
> >
> >    1.
> >
> >    Make sure you have Subversion <http://subversion.tigris.org/>installed.
> >    2.
> >
> >    svn co http://code.djangoproject.com/svn/django/trunk/ django_src
> >    3.
> >
> >    Symlink django_src/django so that django is within your Python
> >    site-packages directory:
> >
> >    ln -s `pwd`/django_src/django /usr/lib/python2.3/site-packages/django
> >
> >
> >    (In the above line, change python2.3 to match your current Python
> >    version.)
> >
> > You don't have to run python setup.py install.
> >
> 于是我放到了这里:C:\Python25\Lib\site-packages
>
> 进入:C:\Python25\Lib\site-packages\django\bin
> 因为django-admin.py在这个目录。
> >> django-admin.py startproject newtest
> 是的确生成了newtest目录。这是正常的。
>
> 可是我并不想把测试用的目录放在C:并且更不想放在python目录下。
>
> 我进入D:,再:
>
>
> > D:\>python django-admin.py startproject newtest
> > python: can't open file 'django-admin.py': [Errno 2] No such file or
> > director
> >
> > D:\>django-admin.py startproject newtest
> > 'django-admin.py' 不是内部或外部命令,也不是可运行的程序
> > 或批处理文件。
> >
>>
> 请问LI兄怎么解决这个问题,3Q
>
> --
> IT民工
> blog:http://www.iexper.com/blog/
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
※※※※※※※※※※※※※※※※※※※※※※※※
My blog:  http://blog.donews.com/ygao
Forum    http://groups.google.com/group/python_study
※※※※※※※※※※※※※※※※※※※※※※※※
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060527/539ff57b/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月28日 星期日 12:05

志骋 karronqiu at gmail.com
Sun May 28 12:05:26 HKT 2006

linux里面可以做个连接就行了

On 5/27/06, ygao <ygao2004 at gmail.com> wrote:
>
> 再想一想,我想你能解决这个问题。
> 如果你还不能,搜一下这个列表。
>
>
> On 5/27/06, 大郎 <iexper at gmail.com> wrote:
> >
>
>
> hi,Mr li and python(django) fans:
>
> 装了SVN客户端以后,直接把最新的开发版0.92下载了下来。
> 于是照您的教程试着安装,但后来在DJANGO上看到说不用安装了,直接拷到相关目录:
>
>
> >
> > Installing the development version
> >
> >
> >
> > Make sure you have Subversion installed.
> >
> >
> > svn co http://code.djangoproject.com/svn/django/trunk/
> django_src
> >
> >
> > Symlink django_src/django so that django is within your Python
> site-packages directory:
> >
> > ln -s `pwd`/django_src/django
> /usr/lib/python2.3/site-packages/django
> >
> > (In the above line, change python2.3 to match your current Python
> version.)
> >
> > You don't have to run python setup.py install.
>
> 于是我放到了这里:C:\Python25\Lib\site-packages
>
> 进入:C:\Python25\Lib\site-packages\django\bin
> 因为django-admin.py在这个目录。
> >> django-admin.py startproject newtest
> 是的确生成了newtest目录。这是正常的。
>
> 可是我并不想把测试用的目录放在C:并且更不想放在python目录下。
>
> 我进入D:,再:
>
>
> >
> >
> > D:\>python django-admin.py startproject newtest
> > python: can't open file 'django-admin.py': [Errno 2] No such file or
> director
> >
> > D:\>django-admin.py startproject newtest
> > 'django-admin.py' 不是内部或外部命令,也不是可运行的程序
> > 或批处理文件。
>
>>
> 请问LI兄怎么解决这个问题,3Q
>
>
> --
> IT民工
> blog:http://www.iexper.com/blog/
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>
>
>
> --
> ※※※※※※※※※※※※※※※※※※※※※※※※
> My blog:  http://blog.donews.com/ygao
> Forum    http://groups.google.com/group/python_study
> ※※※※※※※※※※※※※※※※※※※※※※※※
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月28日 星期日 12:44

=?ISO-2022-JP?B?GyRCQmdPOhsoQg==?= iexper at gmail.com
Sun May 28 12:44:15 HKT 2006

我在环境变量中加入了django-admin.py的路径:
C:\Python25\Lib\site-packages\django\bin

现在可以在任何路径下执行djano-admin.py了。

3Q大家。
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060528/10dd263d/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号