Installation

Dependencies

Python 3.7 or later is required. Anaconda Distribution is recommended for new starters. It automatically setup some useful tools (e.g. pip, virtual environment manager etc).

pip install

click pip to learn more.

  1. to use pip install from PyPI:

    pip install --upgrade sfeprapy
    
  2. or get the most recent version under developemnt from GitHub (requires git):

    pip install --upgrade "git+https://github.com/fsepy/sfeprapy.git@dev"
    

Local install

Clone or download (master, dev) sfeprapy source code from GitHub, unzip and cd to the source code directory then install using pip:

pip install .

Test installation

Upon successful installation of sfeprapy, enter Python and check whether sfeprapy is installed properly:

import sfeprapy
print(sfeprapy.__version__)
0.8.1