vina provides a Python interface to AutoDock Vina, a widely used tool for molecular docking and virtual screening. Current version: 1.2.7, release cadence: irregular, last update 2023.
pip install vinaVerified import paths — ran on the pinned version, not inferred.
Basic molecular docking using Vina Python interface.
Install Vina binary (e.g., conda install -c bioconda autodock-vina) before using the Python package.
Use tools like Meeko or AutoDockTools to convert ligands to PDBQT.
Use `from vina import Vino` for version 1.2.x. For compatibility, check `vina.__version__`.
Use `from vina import Vino` instead.
Install AutoDock Vina binary (e.g., via conda or download from official site) and ensure it's in PATH.
Convert your receptor and ligand to PDBQT using tools like prepare_receptor4.py and prepare_ligand4.py from AutoDockTools.