Skip to content
Snippets Groups Projects
Installation.md 1.23 KiB
Newer Older
selva's avatar
selva committed
# BiTIA Installation
selva's avatar
selva committed
BiTIA CLI is the Command Interface Tool which helps in getting user inputs with commands, directories and required files. It sends tasks to the server, where bitia-runner processes them and generates results.
selva's avatar
selva committed

selva's avatar
selva committed
**To work with BiTIA, we need to install bitia-cli and submit tasks to the server**
selva's avatar
selva committed
## Installing bitia
Installing bitia is very simple, you only need to have [python-pip] installed in your system

BiTIA CLI is available on [PyPi] as [BiTIA].

selva's avatar
selva committed
Ensure you have a working pip with python installed. You can accomplish this by executing the following commands and confirming that the output looks similar


selva's avatar
selva committed

``` bash
$ python --version
Python 3.N.N
$ pip --version
pip X.Y.Z from ... (python 3.N.N)
```
If that worked, congratulations! You have a working pip in your environment.



selva's avatar
selva committed
To Install **BiTIA** using pip, run this command:
selva's avatar
selva committed

selva's avatar
selva committed
  ```{eval-rst}
  .. tabs::

    .. tab:: Linux

           $ python3 -m pip install bitia

    .. tab:: MacOS

           $ python3 -m pip install bitia

    .. tab:: Windows

           $ python3 -m pip install bitia
  ```
selva's avatar
selva committed


[BiTIA]: https://pypi.org/project/bitia/
[Pypi]: https://pypi.org/
[install Python]: https://realpython.com/installing-python/
[python-pip]: https://pypi.org/project/pip/