有什么办法可以在 Unix 系统等 windows 控制台中直接运行 python 脚本吗?
#! /usr/bin/env python3.3
或者创建一个兼作 python 脚本的 .BAT 文件:
@echo off
rem = '''
echo This is "%~f0" before Python
python -x "%~f0" %*
echo This is "%~f0" after Python
goto :end
'''
print "------------- Python code starts here --------------"
import sys
print sys.path
print sys.argv
print "------------- Python code ends here ----------------"
rem = '''
:end
rem '''
只需在 Windows 上双击带有.py
扩展名的文件即可执行脚本。
如果使用 Python GUI + 命令行,则可以运行任何.py
文件。