Linux Mint下Spyder使用Python3

来源:互联网 发布:日本line 软件下载 编辑:程序博客网 时间:2024/05/18 21:09

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

SourceSpyder v2.3.0dev6 -- Experimental release compatible with Python 2.7 to 3.3
https://code.google.com/p/spyderlib/downloads/list

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

打开终端,安装PyQt4或PySide

sudo apt-get install python3-pyqt4sudo apt-get install python3-pyside
建议安装
sudo apt-get install python-pipsudo 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-pipsudo 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://blog.csdn.net/u011699894/article/details/10037447

[Desktop Entry]Encoding=UTF-8Type=ApplicationTerminal=falseExec=python3 /home/demo/Program/spyder-2.3.0dev6/bootstrap.pyCategories=Application;Development;Name=SpyderComment="Spyder"Icon=/home/demo/Program/spyder-2.3.0dev6/img_src/spyder.png



原创粉丝点击