Installation¶
Python Version¶
We recommend using the latest version of Python. carculator_bus supports a Python 3.x environment.
Because carculator_bus is still at an early development stage, we recommend installing it in a separate environment.
Using Conda environment¶
Create a conda environment:
conda create -n <name of the environment> python=3.7
Once your environment created, you should activate it:
conda activate <name of the environment>
And install the carculator_bus library in your new environment via Conda:
conda install -c romainsacchi carculator_bus
Using Pip¶
Use the following command to install the carculator_bus via pip:
pip install carculator_bus
Note
This will install the package and the required dependencies.
How to update this package?¶
Within the conda environment, type:
conda update carculator_bus
Or from Pypi using pip:
pip install carculator_bus --upgrade