-
Notifications
You must be signed in to change notification settings - Fork 2
Installation
Devin Thakker edited this page Jun 24, 2023
·
4 revisions
First, if you do not have pip installed enter the following commands sequentially
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
Now navigate to the path you have this file in and enter
python get-pip.py
You can verify the installation by entering
pip --version
Inside of your chosen environment use this command to install it through pip
pip Install icarus-bt
If you would like to setup a virtual environment for Icarus-bt follow these steps:
python -m venv [Enter venv name]
Next, you need to activate the virtual environment
source [venv name]/bin/activate
Then install the latest distribution with pip
pip install icarus-bt
That is all you need to get started with Icarus-bt
Once you are done with the venv you can end the session with
deactivate