🐍 Installation and Conda Environment

Option 2: pip

SynopticPy is my first PyPI package. You may install the last published version from PyPI. This requires the following are already installed:
numpy, pandas, requests, matplotlib, and cartopy.

pip install SynopticPy

Note that installing with pip will not give you the latest version from github.

Option 3: Alternative “Install” Method

There are several other ways to “install” a python package so you can import them. One alternative is to clone the repository into any directory.

git clone https://github.com/blaylockbk/SynopticPy.git

To import the SynopticPy functions, you will need to update your PYTHONPATH environment variable to find the directory you cloned the package into, or you can add the line the following line to the top of your python scripts:

sys.path.append("/path/to/SynotpicPy")