Powershell无法使用conda activate的问题

主要引起的原因是Powershell使用Conda init失败

  1. 问题主要出现在中文系统中。
  2. 特别与onedrive开启了【文档同步】有关

Powershell无法使用conda activate的问题_第1张图片
可以看到,最后两行生成了配置文件(用以启动conda),并在onedrive上,但是!onedrive中路径有【文档】无法解析,有unicode乱码的存在。

以下是关于powershell配置文件的介绍。
Powershell无法使用conda activate的问题_第2张图片

因此,问题就很简单了,主要是powershell在读取配置文件的时候,无法解析unicode路径(乱码导致)。
我们可以通过在powershell中test-path $profile命令得到False的结果后。

通过new-item -path $profile -itemtype file -force重新生成并定向了powershell的配置文件,然后我们将之前错误路径下ps文件的内容,复制到新的powershell即可,conda即可正常运行了。

大致内容如下

# !! Contents within this block are managed by 'conda init' !!
(& "C:\Users\me\anaconda3\current\Scripts\conda.exe" "shell.powershell" "hook") | Out-String | Invoke-Expression
#endregion```

你可能感兴趣的:(工具错误,powershell,anaconda)