Installation

You can install the package using pip:

pip install autoemxsp

Alternatively, to ensure you are constantly up to date with the package during minor developments, you can clone the GitHub repository and use editable installation. This allows you to access the latest features or bug fixes that are not yet included in the latest release version. To do this, follow these steps:

  1. Navigate to the Directory: Change into the directory you want the package to be cloned:

cd your/path/
  1. Clone the Repository: Create a local copy of the repository at the current directory:

git clone https://github.com/CederGroupHub/AutoEMXSp.git
  1. Install the Package in Editable Mode:

pip install -e .

To ensure that you always have the latest version of the package, complete with all new features and fixes, periodically run:

  1. Navigate to the Directory:

cd your/path/to/AutoEMXSp
  1. Pull Updates:

    Fetch latest package updates from the main branch of the repository:

git pull origin main