python spyder怎么导入模块?

python spyder怎么导入模块?,第1张

Spyder是Python的IDE,很方便,您下载Anaconda并安装,Anaconda是完全免费的,包换很多Python依赖包.Anaconda带有Spyder3.0。安装完毕后在开始菜单中启动Anaconda Prompt,在其中输入spyder就可以启动了。在import之前,你可以 import sys sys.path.append('你的module的目录‘)就可以import这个目录里的module了。

Spyder is the Scientific PYthon Development EnviRonment:

a powerful interactive development environment for the Python language with advanced editing, interactive testing, debugging and introspection features

and a numerical computing environment thanks to the support of IPython (enhanced interactive Python interpreter) and popular Python libraries such as NumPy (linear algebra), SciPy (signal and image processing) or matplotlib (interactive 2D/3D plotting).

Spyder may also be used as a library providing powerful console-related widgets for your PyQt-based applications – for example, it may be used to integrate a debugging console directly in the layout of your graphical user interface.

首先,安装wheel,之后安装PyQt4-4.11.4-cp35-none-win32,这个包要和自己的python匹配

安装好之后,直接用pip install spyder 安装就可以了。对网速要求比较高,要下载30多个依赖包

1、安装spyder

打开https://pypi.python.org/pypi/spyder

下载里面最新的源码zip包,在本地解压后,cmd里cd到解压的目录下

python setup.py install

很简单的安装,安装过程中也没报什么错误。

安装后,在python安装目录下的Scripts下面会有一个spyder.bat,运行它就可以启动Spyder

如果你的系统变量里包含了这个Scripts目录,那么你在cmd中输入spyder也可以启动。

(我的系统变量Path是这样设置的: %PYTHON_HOME%%PYTHON_HOME%\Scripts )

2、安装PyQt4

由于Spyder是基于PyQt4的,所以如果你启动Spyder报错误:

就安装个PyQt4 4.6+版本就可以

在windows上安装PyQt4,为了简单安装,还是直接安装whl格式的安装包,这种包是经过编译的,安装速度比较快。

(如果你之前没安装过wheel模块,你只需要

pip install wheel

打开http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyqt4

下载里面相对应python版本、系统版本的whl文件

这里我下载了个PyQt4-4.11.4-cp27-none-win32.whl

cmd里cd到该whl文件目录下

pip install PyQt4-4.11.4-cp27-none-win32.whl

安装后,你在python里面输入

import PyQt4

没报错就说明安装成功

3、一些小问题

老实说,这窗体的panel拖曳不是很方便,如果拖动得窗体都乱了样,只需要在“View”→"Reset Window Layout"即可。

----

如果在运行py文件的时候报警告:

里面说没控制台被选择,这时候你得在"View"→"Panes"→"Console"观看下,看看是有什么问题。

另外也可以在"Run"→"Configure"里,设置"Execute in a new dedicated Python console",这时候再运行py文件试试下。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11549723.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存