当我尝试使用以下代码执行带有南方的schemamigration
时:
# coding=utf-8
from fabric.api import env, hosts, local, run, cd
def updatebd():
local('cd /Users/gian88/Sites/www/py/WEB/web/web/ && python manage.py schemamigration principal –-auto')
执行结构时会出现以下错误:
迁移名称应仅包含字母数字字符和 下划线。
当使用句子with cd
时,本地命令无法识别句子with cd
中的网址并显示以下错误:
can't open file 'manage.py': [Errno 2] No such file or directory
答案 0 :(得分:0)
问题的解决方案是使用命令lcd,句子是这样的:
def updatebd():
with lcd('/Users/gian88/Sites/www/py/WEB/web/web/'):
local('python manage.py schemamigration principal --auto')