これはWindows用です:
たとえば、デスクトップに「mygrapher」という名前のフォルダがあります。中には、メインファイル「grapherMain.py」が必要とするPythonファイルを含む「calculation」と「graphing」というフォルダがあります。また、「grapherMain.py」は「graphing」に格納されます。ファイルを移動せずにすべてを実行するために、バッチスクリプトを作成できます。このバッチファイルを「rungraph.bat」と呼びましょう。
@ECHO OFF
setlocal
set PYTHONPATH=%cd%\grapher;%cd%\calculation
python %cd%\grapher\grapherMain.py
endlocal
このスクリプトは「mygrapher」にあります。実行するには、コマンドプロンプトを表示してから、次の操作を行います。
>cd Desktop\mygrapher (this navigates into the "mygrapher" folder)
>rungraph.bat (this executes the batch file)