热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

anaconda安装(zsh终端)问题

我在Ubuntu16.04中安装了anaconda。我正在使用oh-my-zsh终端。安装后,conda在zsh终端中

我在Ubuntu 16.04中安装了anaconda。我正在使用oh-my-zsh终端。安装后,conda在zsh终端中不是一个常用命令,所以我将./bashrc的anaconda相对部分复制到了./zshrc中,现在工作正常。问题在于,现在每个促销的开头都有一个“基本”字样。看起来很烦人:

(base) -> ~

我是否盲目地将脚本复制到我的./zshrc中犯了错?我该怎么解决?
顺便说一下,这是我复制的部分:

__conda_setup="$('/home/saeed/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/username/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/username/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/username/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup





推荐阅读
author-avatar
淡然的可欣
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有