mia - My Implemented Algorithms Build and Installation Install Mia rm -rf _pyenv && python3 -m venv ./_pyenv --copies source _pyenv/bin/activate python -m pip install --upgrade pip setuptools # Install from source directory python -m pip install cmake==3.27.2 python -m pip install ./ -v # Install from github python -m pip install git+https://github.com/innerNULL/mia.git#egg=mia -vvv Build Python Developments Environment rm -rf _pyenv && python3 -m venv ./_pyenv --copies source _pyenv/bin/activate python -m pip install --upgrade pip setuptools python -m pip install -r ./requirements.txt -v # deactivate Run Static Type Checker python -m mypy ./mia/* --config-file ./mypy.ini -v