方法一:检查环境变量 打开PowerShell窗口。 输入以下命令查看当前环境变量配置: conda info --envs 如果显示的环境变量列表中存在不必要的或冲突的环境,可以考虑将其删除或更改。 重新启动PowerShell窗口,观察启动速度是否有所改善。方法二:重置conda配置 打开Anaconda Navigator(Anaconda集成环境管理器)。 在菜单栏上选择...
解决方案 此时可以使用conda init命令进行复位修复: conda init source ~/anaconda3/etc/profile.d...
重新打开Powershell,输入conda --version查看是否能显示版本号,否则检查上述步骤是否正确完成。 先后输入以下指令 conda init powershell Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser 重启Powershell后,你可以在Powershell中直接使用conda命令 (opt.)取消默认进入conda的base环境:conda config --set ...
运行conda init powershell 虽然提示已经完成,但是最后一项运行脚本路径存在乱码,我对比了另一个系统使用非中文账户的运行结果,发现乱码字符是“Documents”。 那么这个问题的锅应该出在Onedrive上,系统语言设置为中文时,Onedrive出现将英文翻译为中文,导致conda生成脚本文件时路径出现乱码的迷惑操作。最终导致conda无法将脚本...
Powershell、CMD添加conda init 前言:其实安装conda时完全不需要在系统中添加环境变量,我们可以使用conda init这种方便的方式。 打开powershell win+R输入powershell回车 进入到你的conda script目录 cdC:\Users\mayu3\anaconda3\Scripts 执行conda init 命令
Step5: 至此PowerShell就能用conda了,此时打开PowerShell就会出现(base)这个虚拟环境。 P.S.: 如果不想每次打开都默认在base环境的话可以使用如下方法: 执行命令conda init powershell找到PowerShell的配置文件位置,可能有如下两者之一或是两者都有 no change D:\Users\xxx\Documents\WindowsPowerShell\profile.ps1 ...
Right-click the Start Button, choose Powershell (admin) Paste this into Powershell and hit Enter set-executionpolicy remotesigned Step 2: Install the latest Anaconda + PowerShell Open Anaconda prompt, and type "conda init powershell" Open PowerShell and it should work. ...
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...
话说 *** Assertion failure in UITraitCollection * _Nonnull _UIGetCurrentFallbackTraitCollection(void...
conda init powershell 关闭当前powershell窗口,重新打开一个powershell窗口输入 conda activate 环境名 测试。 CMD 的话只需把上面三步中的powershell 改为cmd.exe 即可。 jupyter 中冗余的kernel问题 使用命令 jupyter kernelspec remove 'kernelname' 可以删除指定的kernel ...