【问题标题】:Start two instances of spyder with python2.7 and python3.4 in ubuntu在ubuntu中用python2.7和python3.4启动两个spyder实例
【发布时间】:2017-02-23 21:32:39
【问题描述】:
我想安装两个spyder:一个是python2.7,一个是python3.4
然后我运行命令来安装两者:
pip install spyder
pip3 install spyder
但是如何以不同的方式开始呢?
因为当我输入时
spyder
它只是用python2.7出来的spyder
如何用python3.4启动spyder?
谢谢。
【问题讨论】:
标签:
python
python-3.x
ide
spyder
【解决方案1】:
我无法通过 pip3 下载 spyder,而是使用了 apt install spyder3,但希望这仍然有效:
对于python2.7
spyder
对于python3.4
spyder3
我可以让两者同时运行,但如果您有问题,请尝试使用 --new-instance
希望有帮助!