Ubuntu18.04安装ros和conda(系统切换Python环境)

ROS与conda

ros默认使用的是python2而conda则是使用的python3,我是先安装的ros后安装的conda,所以最后软链接是指向python3的,导致ros项目无法运行
安装完conda后,系统默认进入conda的base环境,需要conda deactivate退出,在使用conda info查看是否成功

修改软链接:

查看python解释器指向:

ls -al /usr/bin/python

在这里插入图片描述
20.04:lrwxrwxrwx 1 root root 7 4月 15 2020 /usr/bin/python -> python2

修改软链接指向其他Python版本
sudo rm -rf /usr/bin/python
新建 sudo ln -s /usr/bin/python2.7 /usr/bin/python

参考链接

https://blog.csdn.net/merry1996/article/details/107507604

你可能感兴趣的:(ubuntu,python)