Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.04 KB

install.rst

File metadata and controls

50 lines (31 loc) · 1.04 KB

Install

h1 { display: none; margin: 0; padding: 0; }

scikit-rf is supported and tested on Python versions 2.7, 3.5, 3.6. There are several ways to install listed below.

anaconda (recommended)

The easiest way to install scikit-rf is to first install anaconda. Once anaconda is installe, you can install scikit-rf from the conda-forge channel by entering the following into a terminal:

conda install -c conda-forge  scikit-rf

pip

If you dont want to install anaconda (really, why not?), you can use pip:

pip install scikit-rf

git

The bleeding-edge development version of scikit-rf may be installed using:

git clone https://github.com/scikit-rf/scikit-rf.git
cd scikit-rf
python setup.py install