Install¶
scikit-rf is supported and tested on .
Current version of scikit-rf is . 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 installed, 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 .