.. _install: Installing Simple Bandwidth Scanner =================================== The recommended method is to install it from your system package manager. In Debian_/Ubuntu_ systems:: sudo apt install sbws To install also the documentation:: sudo apt install sbws-doc You might need to check in which releases is the package available. There is a port_ for FreeBSD. Continue reading to install ``sbws`` in other ways. System requirements -------------------- - Tor (last stable version is recommended) To use only exits that implement congestion control, tor >= 0.4.7.4-alpha-dev - Python 3 (>= 3.10) Python dependencies -------------------- - Stem_ >= 1.8.0 - Requests_ (with socks_ support) >= 2.10.0 It is recommend to install the dependencies from your system package manager. If that is not possible, because the Python dependencies are not available in your system, you can install them from their sources. We only recommend using pip_ for development or testing. Installing sbws from source --------------------------- Clone ``sbws``:: git clone https://gitlab.torproject.org/tpo/network-health/sbws.git git checkout $(git describe --abbrev=0 --tags) (``git describe --abbrev=0 --tags`` provides the latest stable version which should be used in production) and install it:: cd sbws pip install . Installing sbws for development or testing ------------------------------------------ If you use pip_, it is recommended to use virtualenv_, to avoid having different versions of the same libraries in your system. To create a ``virtualenv``:: virtualenv venv -p /usr/bin/python3 source venv/bin/activate Clone ``sbws``:: git clone https://gitlab.torproject.org/tpo/network-health/sbws.git Install the python dependencies:: cd sbws && pip install -e . Installing sbws from docker --------------------------- You can create and run the image locally by running:: docker-compose up You can change the UID and GID for the image changing ``.env``. You'll need a ``sbws.ini`` configuration file in the mounted volume. See more information about this at ``_ (in the local directory or Tor Project Gitlab) or ``_ (local build or Read the Docs). Configuration and deployment ---------------------------- ``sbws`` needs :term:`destination` s to request files from. Please, see ``_ (in the local directory or Tor Project Gitlab) or ``_ (local build or Read the Docs) to configure, deploy and run ``sbws``. System physical requirements ----------------------------- - Bandwidth: at least 12.5MB/s (100 Mbit/s). - Free RAM: at least 5GB - Free disk: at least 15GB Run ``sbws`` without any other option to see detailed information about how much disk space will be used by the program and the files it generates. The updated default values for the following numbers are set at ``sbws/config.default.ini``. By default raw results' files are compressed after 29 days and deleted after 57. The bandwidth files are compressed after 7 days and deleted after 1. If ``sbws`` is configured to log to files, logs will be rotated daily and it will keep 50 log files. .. _virtualenv: https://virtualenv.pypa.io/en/latest/installation.html .. _Stem: https://stem.torproject.org/ .. _socks: http://docs.python-requests.org/en/master/user/advanced/#socks .. https://readthedocs.org/projects/requests/ redirect to this, but the .. certificate of this signed by rtd .. _Requests: http://docs.python-requests.org/ .. http://flake8.pycqa.org/ certificate is signed by rtf .. _Flake8: https://flake8.readthedocs.org/ .. _pytest: https://docs.pytest.org/ .. _tox: https://tox.readthedocs.io .. _Coverage: https://coverage.readthedocs.io/ .. _port: https://www.freshports.org/net/py-sbws/ .. _Debian: https://packages.debian.org/search?keywords=sbws&searchon=names&suite=all§ion=all .. _Ubuntu: https://packages.ubuntu.com/search?keywords=sbws&searchon=names&suite=all§ion=all .. _pip: https://pypi.org/project/pip/