gpt4 book ai didi

python - 使用os.system调用PowerShell时出错

转载 作者:行者123 更新时间:2023-11-30 22:59:37 25 4
gpt4 key购买 nike

当我尝试从 Python 函数调用 powershell 时,收到以下错误:

Cannot load PSReadline module. Console is running without PSReadline.

我有一个名为 ps_cli() 的函数,它是:os.system("powershell -NoProfile")

当我调用它时,我收到以下行为/错误: enter image description here

这之前适用于 Windows 7 和 8 计算机(我目前无法访问),从我读到的一些内容来看,这可能与 Windows 10 计算机上的 PowerShell 5 有关。我正在编写的工具背后的想法是,它可以在具有适当权限的帐户上与任何现代版本的 Windows 一起使用。由于我正在编写更高级的脚本,这似乎会导致几秒钟的延迟,我想了解如何在不执行以下操作的情况下摆脱此问题:

Open Powershell using the parameter -PSConsoleFile and a PSConsoleFile that you previously exported with Export-Console.

这是我在论坛帖子中看到的建议。任何想法将不胜感激!

最佳答案

PSReadline 模块是 Powershell 5.0(在 Win10 上)中的新内置模块,可提供增强的控制台体验。由于它是内置的,所以执行策略不应该有问题(即使它由于某种原因没有签名),但检查一下也没什么坏处。这有效吗?

os.system("powershell -NoProfile -ExecutionPolicy ByPass")

您使用的是第三方控制台吗?该模块可能与除 conhost.exe(cmd 和 powershell 使用的 Windows 中默认)以外的控制台不兼容。

一个肮脏的解决方法是简单地清除屏幕:

os.system("powershell -NoProfile -NoExit -Command cls")

关于python - 使用os.system调用PowerShell时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35678919/

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