我想从命令行运行IPython。但是,我在第一行遇到语法错误,使用魔术函数%pylab
导入pylab会在%上给出语法错误。我使用的命令只是ipython -i script.py
。
任何想法如何解决这个问题?
答案 0 :(得分:6)
您需要将文件命名为script.ipy。当它以.ipy结尾时,它可以包含ipython语法。
来自ipython --help
:
Usage
ipython [subcommand] [options] [files]
If invoked with no options, it executes all the files listed in sequence
and exits, use -i to enter interactive mode after running the files. Files
ending in .py will be treated as normal Python, but files ending in .ipy
can contain special IPython syntax (magic commands, shell expansions, etc.)