0

I am using Anaconda python (2.7) on my Windows 7 machine. I want to install specutils which is a associated package for Astropy.

conda, as I understand, can installs binaries using conda install <package> command. My question is

  • where can I find the binary version of the specutils in the above cited repository.
  • How do I install specutils using conda?
MSeifert
  • 145,886
  • 38
  • 333
  • 352
Jack
  • 11
  • 1
  • 1

2 Answers2

2

You can install specutils with conda:

$ conda install -c astropy specutils

This installs specutils from the astropy anaconda channel (I'm almost certain that you can find the binaries there). If you want to install the development version you can also use:

$ pip install git+https://github.com/astropy/specutils.git@master
MSeifert
  • 145,886
  • 38
  • 333
  • 352
1

There are no stable releases of specutils yet, but you can install it by doing:

git clone https://github.com/astropy/specutils.git
cd specutils
python setup.py install

The specutils docs can be found here, and please report any issues here

astrofrog
  • 32,883
  • 32
  • 90
  • 131