Debian 上的 Django 管理目录
在哪里可以找到我的 Django 管理模板文件(我在 Debian 上运行 Django)?
我试着看这里:
/usr/lib/python2.6/site-packages/django/contrib/admin/media/
但我只能到达/usr/lib。当我尝试使用 cd 命令访问 python2.6 时,我收到消息说它不是目录。
我将不胜感激任何帮助:)。
Where can I find my Django admin template files (I am running Django on Debian)?
I tried to look here:
/usr/lib/python2.6/site-packages/django/contrib/admin/media/
But I can only get as far as /usr/lib. When I try to access python2.6 using cd
command, I get message that it is not a directory.
I would appreciate any help :).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试:
Try:
进入终端并尝试此命令...
这应该会告知您站点包的位置。
Go into the terminal and try this command...
This should inform you as to your site-packages location.
如果您想查看某个包(例如 PIL)的安装位置,请进入 python shell,输入:
帮助文件如下所示:
现在我知道 PIL 位于 /usr/lib/python2.7/dist-包/PIL/
或者,
say if you want to see where a package -- say PIL -- is installed, get to a python shell, type:
The help file looks like:
now I know that PIL is in /usr/lib/python2.7/dist-packages/PIL/
alternatively,