Conda 4.6.14
从以下位置覆盖我的默认PowerShell提示符:
C:\whatevs\okay>
收件人:
(env) PS>
但是我理想地想要它以前的样子:
(env) C:\whatevs\okay>
如何撤消对PowerShell提示符的更改?我喜欢知道每次执行命令时都在使用什么路径和Conda环境!有可以更改的设置吗?
我知道可以修改PowerShell prompt by editing $profile
。但是,我想保留(env)
。是否有一些获取当前Conda环境的快速方法,以便可以将其包含在自定义路径中?
conda init
正在修改的文件是$HOME\Documents\WindowsPowerShell\profile.ps1
,其内容是:
#region conda initialize
# !! Contents within this block are managed by 'conda init' !!
(& "C:\Users\user\Anaconda3\Scripts\conda.exe" "shell.powershell" "hook") | Out-String | Invoke-Expression
#endregion