Linux Mint下Spyder使用Python3

首先下载Spyder最新版,目前是

Source Spyder v2.3.0dev6 -- Experimental release compatible with Python 2.7 to 3.3
https://code.google.com/p/spyderlib/downloads/list
Linux Mint下Spyder使用Python3_第1张图片

解压到Home下的某目录,如 ~/Program

打开终端,安装PyQt4或PySide

sudo apt-get install python3-pyqt4
sudo apt-get install python3-pyside
建议安装
sudo apt-get install python-pip
sudo pip install rope pyflakes sphinx numpy scipy matplotlib

########################################################

2013.08.28 12:50

更正

要能在Python3下使用rope pyflakes sphinx numpy scipy matplotlib等,应该使用Pip的Python3版本


sudo apt-get install python3-pip
sudo pip-3.3 install rope pyflakes sphinx numpy scipy matplotlib


由于该版本不是稳定版本,不建议安装使用,直接在终端输入

python3 /xxx路径/spyder-2.3.0dev6/bootstrap.py

即可,如

python3 ~/Program/spyder-2.3.0dev6/bootstrap.py

建菜单及桌面快捷方式请参考

http://my.oschina.net/mdhhrbl/blog/153424

[Desktop Entry]
Encoding=UTF-8
Type=Application
Terminal=false
Exec=python3 /home/demo/Program/spyder-2.3.0dev6/bootstrap.py
Categories=Application;Development;
Name=Spyder
Comment="Spyder"
Icon=/home/demo/Program/spyder-2.3.0dev6/img_src/spyder.png


你可能感兴趣的:(linux,python3,mint,Spyder)