2017-05-08 9 views
0

私はdjango virtualenvを定義して、サーバを操作したいと思う。私はバッチを書くことを試みた。私のバッチは:djangoサーバを実行するためにWindowsバッチを作成する

start workon moviesEngine 

timeout 2 
start python manage.py runserver 

ですが、それは成功しません。それはworkon用の新しいcmd(つまり、私が使いたいvirtualenv)を作成し、別のcmd(virtualenvのサポートがない)でpythonコマンドを操作します。

私はpythonコマンドをvirtualenvで新しいcmdで実行するにはどうすればよいですか?

答えて

1

startコマンドの/ bオプションを使用すると、別のウィンドウを作成せずに別のアプリケーションを起動できます。

START ["title"] [/D path] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED] 
     [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL] 
     [/NODE <NUMA node>] [/AFFINITY <hex affinity mask>] [/WAIT] [/B] 
     [command/program] [parameters] 

B   Start application without creating a new window. The 
      application has ^C handling ignored. Unless the application 
      enables ^C processing, ^Break is the only way to interrupt 
      the application. 
関連する問題