Getting started¶
Install btso¶
btso relies on other packages to function correctly. All required package could be seen in requirements.txt file. The suggested way to setup btso package is to create a fresh Conda environment by following these steps:
Install Miniconda or update your conda installation with
conda update condaCreate a new environment with
conda create -n <environmentName> python=3.10Activate the environmemt with
conda activate <environmentName>on Mac/Linux oractivate <environmentName>on WindowsClone btso package with
git clone https://Install btso with
pip install -e <path_to_btso>Verify your btso installation by running the automated tests. Go to your btso top-level/root folder in terminal and type
python -m unittestorpython -m unittest discover <path_to_test_directory>, if the first code doesn’t work.