我已经使用此网页(https://www.continuum.io/downloads)在我的PC上安装了Python 2.7(带有64位的Windows 7)。最后,当我在我的新单元格中尝试跟随程序时,它没有用。所以我认为我应该安装numpy和mathplotlib包。我实际上尝试pip install numpy matplotlib
,它说它已经满足了。但是,它还没有奏效。如何使用pip
替代安装?感谢。
import numpy as np
import scipy
from scipy import special
import matplotlib.pyplot as plt
%matplotlib inline
x = np.linspace(0, 10, 100)
fig, ax = plt.subplots()
for n in range(4):
ax.plot(x, scipy.special.jn(n, x),
label=r"$J_%d(x)$" % n)
ax.legend();
答案 0 :(得分:0)
如果您使用的是Anaconda安装,请使用自己的包管理器conda
。在终端提示符中,您应键入
> conda update conda
> conda update anaconda
> conda install matplotlib
所有这些都在他们的tutorial
中描述更新