Installation

It is recommended to use pip for installation. Please make sure the latest version is installed, as bioScience is updated frequently:

pip install bioscience            # normal install
pip install --upgrade bioscience  # or update if needed
pip install --pre bioscience      # or include pre-release version for new features

Alternatively, you could clone and run pip:

git clone https://github.com/aureliolfdez/bioscience.git
pip install .

or also run setup.py file:

git clone https://github.com/aureliolfdez/bioscience.git
python3 setup.py clean
python3 setup.py sdist
python3 -m pip install ./dist/bioscience-0.1.4.tar.gz

Note

Required dependencies:

  • Python>=3.11

  • numpy>=2.0.1

  • pandas>=2.2.2

  • scikit-learn>=1.5.1

  • numba>=0.60.0

  • seaborn>=0.13.2

  • matplotlib>=3.9.0

  • setuptools>=75.1.0

  • requests>=2.32.3