Installation

PubChemPy supports Python versions 3.10+. There are no required dependencies.

There are a variety of ways to download and install PubChemPy.

Option 2: Use conda

Conda is a cross-platform package manager that is popular in the scientific Python community. It provides an alternative to pip for installing Python packages and managing environments. Conda can be installed using the Miniforge installer, which is free and open-source, or the Anaconda installer, which is a commercial distribution that includes many scientific packages by default. Once you have conda installed, you can install PubChmePy from the conda-forge channel with the following command:

conda install -c conda-forge pubchempy

The conda-forge channel is a community-driven collection of conda packages that provides up-to-date and well-maintained packages for the conda package manager.

Option 3: Clone the repository

The latest development version of PubChemPy is always available on GitHub. This version is not guaranteed to be stable, but may include new features that have not yet been released. Simply clone the repository and install as usual:

git clone https://github.com/mcs07/PubChemPy.git
cd PubChemPy
pip install .