南姜戈迁徙
我安装了 South,现在尝试使用它进行迁移:
./manage.py schemamigration myapp --initial
我得到:
-bash: ./manage.py: Permission returned
如果我 sudo 我得到:
sudo: ./manage .py:找不到命令
响应。
怎么了?
谢谢!
I installed south and I try to use it to migrate now:
./manage.py schemamigration myapp --initial
I get a :
-bash: ./manage.py: Permission denied
and if I sudo I get:
sudo: ./manage.py: command not found
Response.
Whats wrong?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使其可执行:
sudo chmod u+x
这样您就可以像
./manage.py
一样运行它You could also make it executable:
sudo chmod u+x
So you can run it like
./manage.py
您的
manage.py
不可执行。只需将其传递给解释器即可。Your
manage.py
isn't executable. Simply pass it to the interpreter instead.