环境变量问题环境变量可能导致conda init命令失效。确保PATH和PYTHONPATH等环境变量设置正确,特别是对于Windows系统,需要将Anaconda或Miniconda的路径添加到系统环境变量中。 Powershell版本问题Powershell版本可能与conda init命令不兼容。建议升级到最新版本的Powershell,或尝试使用其他shell(如cmd)来执行conda命令。 conda版本...
重新打开Powershell,输入conda --version查看是否能显示版本号,否则检查上述步骤是否正确完成。 先后输入以下指令 conda init powershell Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser 重启Powershell后,你可以在Powershell中直接使用conda命令 (opt.)取消默认进入conda的base环境:conda config --set ...
Step2: 打开power shell,执行命令conda init powershell来初始化环境 Step3: 重新打开PowerShell 如有同下图所示的报错 Step4: 关闭当前PowerShell,然后以管理员身份重新打开,执行命令set-ExecutionPolicy RemoteSigned Step5: 至此PowerShell就能用conda了,此时打开PowerShell就会出现(base)这个虚拟环境。 P.S.: 如果不...
前言:其实安装conda时完全不需要在系统中添加环境变量,我们可以使用conda init这种方便的方式。 打开powershell win+R输入powershell回车 进入到你的conda script目录 cdC:\Users\mayu3\anaconda3\Scripts 执行conda init 命令 对powershell执行conda init # powershell代表你要执行conda init的shellconda init powershell...
运行conda init powershell 虽然提示已经完成,但是最后一项运行脚本路径存在乱码,我对比了另一个系统使用非中文账户的运行结果,发现乱码字符是“Documents”。 那么这个问题的锅应该出在Onedrive上,系统语言设置为中文时,Onedrive出现将英文翻译为中文,导致conda生成脚本文件时路径出现乱码的迷惑操作。最终导致conda无法将脚本...
这个时候我们需要使用命令:conda init powershell来初始化环境。然后重启powershell,如果出现了这样的报错: 无法加载文件C:\XXX\WindowsPowerShell\profile.ps1,因为在此系统上禁止运行脚本 可以参考【1】来进行解决。重新输入命令:conda actiavte ts激活虚拟环境成功。 参考资料 【1】vscode提示 “无法加载文件C:\XXX...
解决方案 此时可以使用conda init命令进行复位修复: conda init source ~/anaconda3/etc/profile...
condainitpowershell 执行完命令后重启powershell即可,但是重启后的powershell极可能出现报错信息。 image.png 此时需要改变Set-ExecutionPolicy RemoteSigned设置。将鼠标移动到开始图标上,右键,在弹出的菜单中选择”Windows PowerShell(Admin)“。 image.png 在弹出的权限申请窗口中点击确认,就可以以打开带管理员权限的Power...
Checklist I added a descriptive title I searched open requests and couldn't find a duplicate What is the idea? Currently Now conda only support the init to the Windows Powershell (a.k.a PowerShell 1.0), which is a bit out of date. Hope I...
With the new 4.6.0rc1 conda init powershell puts the below config in your user $PROFILE C:\> $PROFILE C:\Users\dhirschfeld\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 C:\> cat $PROFILE #region conda initialize # !! Conte...