我使用Visual Studio 2017创建应用程序
模板带有角度4 我更新了角度6.1.3 但是我得到这个错误 暴击:Microsoft.AspNetCore.Hosting.Internal.WebHost [6] 应用程序启动异常 System.AggregateException:发生一个或多个错误。 (@ angular / compiler-cli的版本必须为2.3.1或更高。当前版本为“ 6.1.3”。
这是我的package.json
theta = np.linspace(0, np.pi * 2, 80)
# equations for great cricles (longitduinal great circles)
x = R * np.sin(theta[i]) * np.cos((1j / len(theta)) * np.pi * 2)
y = R * np.sin(theta[i]) * np.sin((1j / len(theta)) * np.pi * 2)
z = R * np.cos(theta[i])
# takes the real components of the great circle equation to get the position coords in 3D space
xr = x.real
yr = y.real