Pyinstaller打包获取当前路径

如果打包环境下需要获取当前路径,使用以下代码,也可以在任何场景获取当前路径都用该代码:

os.path.dirname(os.path.realpath(sys.argv[0]))

你可能感兴趣的:(Pyinstaller打包获取当前路径)