### Run PyADF Script Source: https://github.com/chjacob-tubs/pyadf-releases/blob/master/README.md Executes a Python script with PyADF. This command generates an example script that can be modified for custom calculations. ```bash pyadf --save example_script.pyadf ``` -------------------------------- ### Install PyADF with Pip Source: https://github.com/chjacob-tubs/pyadf-releases/blob/master/README.md Installs the PyADF package from its source directory using pip. This command assumes you are in the top-level folder containing the 'setup.py' file. ```bash pip install . ``` -------------------------------- ### Run All PyADF Tests Source: https://github.com/chjacob-tubs/pyadf-releases/blob/master/README.md Runs the complete set of PyADF tests. This command requires OpenBabel to be installed for certain tests and may require specifying a path to the test configuration file. ```bash test_pyadf --keep --timings --save --molclass=openbabel --tests=all --jobrunnerconf=YOURPATHTOPYADF/pyadf/test/test_pyadf.conf ``` -------------------------------- ### Check PyADF Command Line Options Source: https://github.com/chjacob-tubs/pyadf-releases/blob/master/README.md Displays the available command-line options for the 'pyadf' and 'test_pyadf' scripts. This helps in understanding how to use the installed PyADF functionalities. ```bash pyadf --help test_pyadf --help ``` -------------------------------- ### Install Conda Dependencies Source: https://github.com/chjacob-tubs/pyadf-releases/blob/master/README.md Installs essential Python libraries like numpy and scipy, along with other packages such as xcfun, pyscf, openbabel, and rdkit, using conda. These are required for PyADF's core and extended functionalities. ```bash conda install -c conda-forge numpy scipy xcfun pyscf openbabel rdkit ``` -------------------------------- ### Create and Activate Conda Environment Source: https://github.com/chjacob-tubs/pyadf-releases/blob/master/README.md Creates a new conda environment named 'your_env_name' and activates it. This is the first step for installing PyADF with full functionality. ```bash conda create -n your_env_name conda activate your_env_name ``` -------------------------------- ### Run Single PyADF Test Source: https://github.com/chjacob-tubs/pyadf-releases/blob/master/README.md Executes a specific PyADF test case. This is useful for debugging or verifying individual functionalities. ```bash test_pyadf --keep --save --singletest=Orca_SinglePoint_Dipole ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.