{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Installation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## anaconda (recommended)\n", "\n", "The easiest way to install **scikit-rf** is to first install \n", "[anaconda](http://continuum.io/downloads), a binary package manager for python modules. Once anaconda is setup you can install scikit-rf by entering the following into a terminal (do not forget the `-c conda-forge` option):\n", "\n", " conda install -c conda-forge scikit-rf" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## pip\n", "\n", "\n", "Using the [Python Package Index (PyPi)](https://pypi.org/), you can install **scikit-rf** using:\n", "\n", " pip install scikit-rf" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## git\n", "\n", "The bleeding-edge development version of **scikit-rf** may be installed from our [github page](https://github.com/scikit-rf/scikit-rf). You can use git directly, or download a zipfile.\n", "\n", " git clone git@github.com:scikit-rf/scikit-rf.git\n", " cd scikit-rf\n", " python setup.py install" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Optional Modules\n", "\n", "Some features of scikit-rf won't be available until you install additional\n", "modules. You can install these using conda or pip." ] }, { "attachments": {}, "cell_type": "markdown", "metadata": {}, "source": [ "### Instrument Control\n", "\n", "To use the vi module, you must install all of its dependencies. This can be done\n", "with\n", "\n", "$ pip install scikit-rf[visa]\n", "\n", "which will install the following:\n", "\n", "- [pyvisa](https://pyvisa.readthedocs.io/en/latest/)\n", "- [pyvisa-py](https://pyvisa.readthedocs.io/projects/pyvisa-py/en/latest/)" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": {}, "source": [ "