Popen将不会运行我的python程序

Popen将不会运行我的python程序,python,subprocess,easygui,Python,Subprocess,Easygui,所以我试着为我正在制作的文本游戏制作一个启动器,我需要这个启动器根据我选择的扩展来运行游戏的一部分。然而,在创建了启动器并对其进行了测试之后,我意识到在启动器应该执行另一个python程序的部分之前,一切都很正常。它没有执行程序,只是结束了,我不知道为什么。这是我的密码: import easygui as e import os import subprocess def Launch(): expansions = [] file = open("dlc.txt")

所以我试着为我正在制作的文本游戏制作一个启动器,我需要这个启动器根据我选择的扩展来运行游戏的一部分。然而,在创建了启动器并对其进行了测试之后,我意识到在启动器应该执行另一个python程序的部分之前,一切都很正常。它没有执行程序,只是结束了,我不知道为什么。这是我的密码:

import easygui as e
import os
import subprocess
def Launch():
    expansions = []
    file = open("dlc.txt")
    reading = True
    while reading == True:
        temp = file.readline().strip()
        if temp == "":
            reading = False
        elif temp == "The Forgotten Lands":
            expansions.append("The Forgotten Lands (Main Game)")
        else:
            expansions.append(temp)
    game = e.choicebox("Welcome to The Forgotten Lands launcher. Please pick an expansion.","Launcher",choices=expansions)
    if game is None:
        os._exit(0)
    else:
        if game == "The Forgotten Lands (Main Game)":
            game = "The Forgotten Lands"
        dir_path = os.path.dirname(os.path.realpath(__file__))
        filepath = (dir_path + "/" + game + "/" + game + ".py")
        filepath = filepath.replace("/", "\/")
        filepath = filepath.replace("/", "")
        subprocess.Popen(filepath, shell=True)

Launch()
应该是:

subprocess.Popen("python " + filepath, shell=True)
如果那不起作用,你能把代码的输出放进去吗