Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/339.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python本地主机和SASS_Python_Batch File_Sass - Fatal编程技术网

Python本地主机和SASS

Python本地主机和SASS,python,batch-file,sass,Python,Batch File,Sass,我正在尝试将所有命令行命令合并到一个.bat文件中,我使用的唯一命令是: python manage.py runserver 0.0.0.0:8000 --insecure 及 如何编写一个.bat文件来运行它们 如果您不介意获得太多的命令窗口,start将为您打开一个新的cmd控制台: start python manage.py runserver 0.0.0.0:8000 --insecure start sass --watch test.scss:test.css 我刚刚试过了,

我正在尝试将所有命令行命令合并到一个.bat文件中,我使用的唯一命令是:

python manage.py runserver 0.0.0.0:8000 --insecure


如何编写一个.bat文件来运行它们

如果您不介意获得太多的命令窗口,start将为您打开一个新的cmd控制台:

start python manage.py runserver 0.0.0.0:8000 --insecure
start sass --watch test.scss:test.css

我刚刚试过了,python服务器很好,但是SASS行进入了一个无限循环,它一遍又一遍地运行该行。
start python manage.py runserver 0.0.0.0:8000 --insecure
start sass --watch test.scss:test.css