/Application-for-HiWi-in-developement-of-battery-monitoring-software

Temperature task for application for HiWi in developement of battery monitoring software

Primary LanguagePythonMIT LicenseMIT

Application-for-HiWi-in-developement-of-battery-monitoring-software

Temperature task for application for HiWi in developement of battery monitoring software

Setup

Requirements

Installation and execution

This virtualenv example is a Linux example. For virtualenv commands on other OS examples, please refer to this part of the documentation

Clone (download) and extract the repository, then run the following commands from within the directory:

# Change directory to project folder
cd <directory_path/Application-for-HiWi...>


# Create a virtualenv
virtualenv .venv
# Alternative command, if virtualenv is not in PATH
python3 -m virtualenv .venv

# Activate the virtualenv in your shell (assuming it's bash)
. .venv/bin/activate

# Install required dependencies in .venv
pip3 install -r requirements.txt

# Run program
python3 task.py

# exit .venv
deactivate

Distribution build

Official documentation

Using setuptools script setup.py:

# Within .venv virtual environment
python3 setup.py bdist