1,chsh -s /bin/zsh #切换zsh 2,新开Terminal, vim ~/.zshrc加入:【其实就是conda初始化时的代码】 # >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/usr/local/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" ...
安装zsh及oh my zsh过程省略 修改配置文件 vim ~/.zshrc 将~/.bashrc中的以下内容粘贴至zshrc中 # >>> conda init >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$(CONDA_REPORT_ERRORS=false '/home/yangpeng/anaconda3/bin/conda' shell.bash hook 2> ...
先切回bash,然后输入命令conda init zsh然后切回zsh
目前,conda init仅支持Bash、Zsh、Fish和PowerShell这几种常见的shell。 如果执行conda init后没有初始化shell,可能是因为当前使用的shell类型不被conda init所支持。这时,可以尝试手动配置shell的初始化文件。 对于Bash用户,可以在用户主目录下的.bashrc文件中添加以下内容来手动初始化conda: 代码语言:txt 复制 # >>...
在执行这条语句时可能会报权限不足:zsh: permission denied: env_filename.yaml以下是解决办法(1)首先进入到服务器的anaconda的conda目录下(或者bin目录下) ../anaconda/bin/conda(2)执行 chmod -R +x .../anaconda/bin(3)再执行 conda init zsh
这样,你就可以使’conda init’的更改生效了。如果你不想关闭PyCharm和shell,你也可以尝试在运行’conda init’后,手动重新加载shell的配置。具体操作方法取决于你使用的shell类型,例如在Terminal中输入以下命令:对于bash或zsh shell:source ~/.bashrc 或 source ~/.zshrc对于fish shell:source ~/.config/fish/...
conda init的作用 condainit是一个命令,主要用于初始化conda shell。它会将conda的环境变量添加到shell的配置文件中,以便在打开新终端时自动激活conda环境并加载conda相关的命令和工具。这样可以方便地管理和切换项目所需的不同Python版本和包依赖。同时,conda init也支持在不同的shell中进行配置,例如bash、zsh、fish等...
Solution to issue cannot be found in the documentation. I checked the documentation. Issue I have looked everywhere but nothing is working for me, when I install Miniforge on my Mac with home-brew and do conda init zsh afterwards, it put...
1./home/$USER/anaconda/bin/conda init zsh(or/home/$USER/miniconda3/bin/conda init zshif you use miniconda) 2.source ~/.zshrc(or just reopen terminal) Why this answer is better than others? You shouldn't reinvent the wheel: there is already command in conda to activate, all you need...
conda init zsh 执行的结果如下所示: no change /home/ubuntu/anaconda2/condabin/conda no change /home/ubuntu/anaconda2/bin/conda no change /home/ubuntu/anaconda2/bin/conda-env no change /home/ubuntu/anaconda2/bin/activate no change /home/ubuntu/anaconda2/bin/deactivate no change /home/ubuntu...