Skip to content

Installation

Devin Thakker edited this page Jun 24, 2023 · 4 revisions

The following is a step by step process of setting up Icarus-bt on your machine

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:

  1. python -m venv [Enter venv name]

Next, you need to activate the virtual environment

  1. source [venv name]/bin/activate

Then install the latest distribution with pip

  1. 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

Clone this wiki locally