python spyder怎么导入模块?

如题所述

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.

温馨提示:答案为网友推荐,仅供参考