我正在做一个需要打开 Chimera 的程序,我用以下方式打开它:
def generate_files_bat(filename):
f = open(filename, 'w')
text = """echo off SET PATH=%PATH%;"C:\\Program Files (x86)\\Chimera 1.6.1\\bin" chimera colpeps.cmd"""
print >>f, text
f.close()
但是我需要在运行 python 程序的计算机之外找到 Chimera。有什么方法可以在任何计算机上通过 python 程序搜索路径?