Clément F
Clément F

Reputation: 3955

installing ephem with conda on python 3.6

I'm using Python 3.6 on Anaconda, and I need to use the ephem package. I used the command :

conda install -c anaconda ephem 

It returns an error, saying that epecifications were found in conflict : ephem requires Python 2.6.

Is there a way I can use ephem on Python 3.6 with Anaconda?

Upvotes: 2

Views: 1296

Answers (1)

Brian Graham
Brian Graham

Reputation: 39

I used the following to successfully install ephem for Python 3.6 (Running Spyder with Python 3.6):

conda install -c astropy pyephem

I found the info at this link from Anaconda.

Upvotes: 2

Related Questions