Skip to content

Latest commit

 

History

History
64 lines (39 loc) · 1.42 KB

install.rst

File metadata and controls

64 lines (39 loc) · 1.42 KB

Install

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

scikit-rf is supported and tested on PyPI - Python Version.

Current version of scikit-rf is PyPI - Version. There are several ways to install scikit-rf, 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, you can use pip:

pip install scikit-rf

scikit-rf does not install all optional dependencies by default, but if you need some of them just do

pip install scikit-rf[plot,visa,xlsx,netw]

or just a subset of them.

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
pip install .