Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Command to create conda environment !

  • Public
By Neelam Jha 1209 days ago
# using pip pip install -r requirements.txt # using Conda conda create --name <env_name> --file requirements.txt #Using yaml conda env create -f environment.yml #Listing env conda env list #Create env with python36 conda create -n myenv python=3.6