1

有什么办法可以在 Unix 系统等 windows 控制台中直接运行 python 脚本吗?

#! /usr/bin/env python3.3
4

3 回答 3

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 '''
于 2013-08-30T13:36:05.360 回答
0

只需在 Windows 上双击带有.py扩展名的文件即可执行脚本。

于 2013-08-30T13:31:27.723 回答
0

如果使用 Python GUI + 命令行,则可以运行任何.py文件。

http://www.python.org/download/releases/3.3.2/#download

于 2013-08-30T13:34:52.877 回答