这个问题是之前没遇到过的,以前每一安装anaconda都是一路绿灯,装好之后就可以开心的玩耍了。
记录:
(1)ubuntu18.04安装anaconda之后是没有把anaconda的环境直接加入到ubuntu系统的环境变量中
解决方案1:https://blog.csdn.net/weixin_44433045/article/details/89476516?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param
解决方案2:在/etc/profile中添加环境变量
export PATH="/home/hqy/anaconda2/bin:$PATH"
解决方案3:在~/.bashrc中添加环境变量,但是有一个问题就是,每次远程连接服务器都需要,source ~/.bashrc。比较好的解决方案:方案1中的解决思路
(2)ubuntu中什么命令也用不了了,包括sudo 提示找不到sudo
解决方案:https://blog.csdn.net/yj1556492839/article/details/78993707?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param