Skip to content

Latest commit

 

History

History
70 lines (46 loc) · 1.89 KB

installation.rst

File metadata and controls

70 lines (46 loc) · 1.89 KB

Installation

kikuchipy can be installed from Anaconda, the Python Package Index (pip), or from source, and only supports Python >= 3.7.

We recommend you install it in a conda environment with the Miniconda distribution:

$ conda create --name kikuchipy python=3.8
$ conda activate kikuchipy

If you prefer a graphical interface to manage packages and environments, install the Anaconda distribution instead.

Anaconda

Anaconda provides the easiest installation. In the Anaconda Prompt, terminal or Command Prompt, install with:

$ conda install kikuchipy --channel conda-forge

If you at a later time need to update the package:

$ conda update kikuchipy

Pip

To install with pip, run the following in the Anaconda Prompt, terminal or Command Prompt:

$ pip install kikuchipy

If you at a later time need to update the package:

$ pip install --upgrade kikuchipy

Note

kikuchipy builds upon HyperSpy, which depends upon a number of libraries that usually need to be compiled. Installing kikuchipy with pip may therefore require some development tools.

Install from source

To install kikuchipy from source, clone the repository from GitHub:

$ git clone https://github.com/pyxem/kikuchipy.git
$ cd kikuchipy
$ pip install --editable .

See the :ref:`contributing guidelines <setting-up-a-development-installation>` for how to set up a development installation.