anaconda中spyder如何运行?

运行anaconda中spyder的方法:(推荐:anaconda使用教程)

anaconda中包含很多实用的包,spyder, juypter, ipython等。由于spyder在anaconda目录下的bin中,打开spyder需要较麻烦的命令:

cd /home/wdgj/Softwares/anaconda3/bin 
 ./spyder

添加永久变量

把anaconda中的bin的路径永久添加到PATH中,每次打开spyder时,只需要在终端输入spyder即可。

打开终端,使用vim对.bashrc进行编辑。

sudo vim .bashrc

输入i,在文件的最后加入

export PATH="/home/wdgj/Softwares/anaconda3/bin:$PATH"

界面类似于下图

按Esc键修改完毕,并输入'':wq''保存并退出。最后source生效变量设置

source .bashrc

此时/path/to/anaconda/bin被加入到变量PATH中,至此任意打开终端,输入spyder即可打开spyder。

更多python知识请关注python教程。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » anaconda中spyder如何运行?