Lines Matching full:path
15 # * Install ActivePerl and ensure it is somewhere on your path.
29 # Find all "foo.exe" files on the PATH.
31 entries = os.environ["PATH"].split(os.pathsep)
34 fname = os.path.abspath(os.path.join(p, filename))
35 if os.path.isfile(fname) and fname not in ret:
39 fname = os.path.abspath(os.path.join(p, filename))
40 if os.path.isfile(fname) and fname not in ret:
65 print(" Please install ActivePerl and ensure it appears on your path")
162 if not os.path.isdir(ssl_dir):
166 # perl should be on the path, but we also look in "\perl" and "c:\\perl"
182 print('Could not find nasm.exe, please add to PATH')
186 # Put our working Perl at the front of our path
187 os.environ["PATH"] = os.path.dirname(perl) + \
189 os.environ["PATH"]