我正在尝试使用以下代码在Jupyter笔记本中生成一些简单的图:
import numpy as np
import matplotlib.pyplot as plt
def f(t):
return np.exp(-t) * np.cos(2*np.pi*t)
t1 = np.arange(0.0, 5.0, 0.1)
t2 = np.arange(0.0, 5.0, 0.02)
plt.figure(1)
plt.subplot(211)
plt.plot(t1, f(t1), 'bo', t2, f(t2), 'k')
plt.subplot(212)
plt.plot(t2, np.cos(2*np.pi*t2), 'r--')
plt.show()
但是,它总是从subprocess.py第997行返回“找不到文件”错误:
_execute_child中的〜\ Anaconda3 \ lib \ subprocess.py(self,args, 可执行文件,preexec_fn,close_fds,pass_fds,cwd,env,startupinfo, creationflags,shell,p2cread,p2cwrite,c2pread,c2pwrite,errread, errwrite,unused_restore_signals,unused_start_new_session) 995 env, 996 os.fspath(cwd)如果cwd不是None其他None, -> 997 startupinfo) 998最后: 999#发射儿童。关闭这些管道的父级副本
FileNotFoundError:[WinError 2]系统找不到文件 指定
我在Windows 64位计算机上使用Juypter 5.7.4和Python 3.6.6。
任何帮助将不胜感激。