gpt4 book ai didi

Powershell 在运行命令时变黑

转载 作者:行者123 更新时间:2023-12-02 23:33:04 26 4
gpt4 key购买 nike

我原来的蓝色背景 Powershell 看起来很不错,而且很容易使用。:

Original Terminal

但是,在运行某些命令时,例如 condacode ,它变成黑色,是这样的:
Terminal After running command

谁能告诉我如何解决它?

最佳答案

尝试将此添加到您的个人资料中。并重复并适应具有相同问题的任何其他命令。

一些命令会改变前景色或背景色。这应该重置它们。 $args是一个特殊变量,在您键入函数后将包含所有内容。它应该像运行旧命令一样运行(这(可能)真的是 conda.exe )。 try/finally是确保它始终重置颜色,即使程序崩溃或您按 Ctrl-C

Function conda {
$fg = [console]::ForegroundColor
$bg = [console]::BackgroundColor
try {
conda.exe $args
} finally {
[console]::ForegroundColor = $fg
[console]::BackgroundColor = $bg
}
}

要查找您的个人资料,请运行:

$profile

如果文件不存在,创建它,并添加上面的代码。

编辑:请记住,更新您的配置文件后,您需要重新启动 Powershell,或者像这样获取您的配置文件:

. $profile

关于Powershell 在运行命令时变黑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62467223/

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