### Installing aimsgb using Pip Source: https://github.com/ksyang2013/aimsgb/blob/master/README.rst This command installs the aimsgb Python library using pip, the Python package installer. It is the easiest and recommended method for quickly setting up the library. ```Shell pip install aimsgb ``` -------------------------------- ### Installing aimsgb from Local Source Source: https://github.com/ksyang2013/aimsgb/blob/master/README.rst This command installs the aimsgb package from the current local directory. It is typically used after cloning the repository and navigating into its root, allowing for installation directly from the downloaded source. ```Shell pip install . ``` -------------------------------- ### Installing aimsgb in Development Mode Source: https://github.com/ksyang2013/aimsgb/blob/master/README.rst This command installs the aimsgb package in editable (development) mode. This allows for local modifications to the source code to be immediately reflected without requiring reinstallation, which is highly beneficial for development and testing purposes. ```Shell pip install -e . ``` -------------------------------- ### Navigating to aimsgb Project Directory Source: https://github.com/ksyang2013/aimsgb/blob/master/README.rst This command changes the current working directory to the newly cloned 'aimsgb' folder. This step is essential to execute further installation commands from the project's root directory. ```Shell cd aimsgb ``` -------------------------------- ### Cloning aimsgb Repository from GitHub Source: https://github.com/ksyang2013/aimsgb/blob/master/README.rst This command clones the latest version of the aimsgb source code from its official GitHub repository. This is the initial step when opting for a source-based installation using Git. ```Shell git clone https://github.com/ksyang2013/aimsgb.git ``` -------------------------------- ### Executing `test_time.py` with POSCAR Input (Bash) Source: https://github.com/ksyang2013/aimsgb/blob/master/tests/time/readme.txt This command executes the `test_time.py` Python script from the current directory, passing `poscars/POSCAR_MASnI3` as a command-line argument. This is typically used for performance testing or benchmarking the script's execution time with a given input structure, likely a crystallographic information file. ```bash python ./test_time.py poscars/POSCAR_MASnI3 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.