为什么已经安装了ephem,但为什么无法导入(Mac)?

时间:2019-01-17 05:25:29

标签: python pyephem

我已经在计算机上安装了ephem。但是,当我尝试将其导入到项目中时遇到了一个问题。

x-MacBook-Pro:~ dkfloza$ pip install ephem Requirement already satisfied: ephem in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (3.7.6.0)

我不断得到该模块不存在。知道我该如何解决吗?

这是代码:

import ephem
import datetime
## [...]

name = "ISS (ZARYA)";
line1 = "1 25544U 98067A   12304.22916904  .00016548  00000-0  28330-3 0  5509";
line2 = "2 25544  51.6482 170.5822 0016684 224.8813 236.0409 15.51231918798998";

tle_rec = ephem.readtle(name, line1, line2);
tle_rec.compute();

print(tle_rec.sublong, tle_rec.sublat);

0 个答案:

没有答案