gpt4 book ai didi

python - 在 PowerShell 中运行 Python?

转载 作者:IT老高 更新时间:2023-10-28 21:00:05 26 4
gpt4 key购买 nike

我正在尝试使用 Zed A. Shaw 的指南“Learn Python the hard way”来学习 Python 的基础知识。我遇到的问题是我可以运行 Python 脚本,但只能在名称前面使用 .\ 时。这会在瞬间打开 CMD,然后关闭。

如果我尝试运行该文件,它会返回该文件不是可运行的程序文件、脚本等。

我在 Stack Overflow 上发现了多个与此问题相关的问题,但没有一个解决方案对我有用。

我尝试过的两件事:

[Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27", "User")

$env:PATH =$env:PATH+";."

来源:(How do you remove the PowerShell requirement that scripts and executables be preceded by ".\"?)

当我检查环境变量 PATH 时,它里面有正确的路径,那么还有什么其他原因会导致这种情况?

最佳答案

因此,您可以在 PowerShell 中运行 Python。你可以做python <scriptName>.py运行脚本。因此,对于名为 test.py 的脚本包含

name = raw_input("Enter your name: ")
print "Hello, " + name

PowerShell session 将是

PS C:\Python27> python test.py
Enter your name: Monty Python
Hello, Monty Python
PS C:\Python27>

关于python - 在 PowerShell 中运行 Python?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19676403/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com