efb15606c6e70066b5d0894af9f3683ab0e39b4a
operations in the experiments. - Identified and fixed multiple logic and syntax errors in the `Accumulation` class similar to those recently found in `ADC_Result`. - Implemented missing arithmetic operators (`*`, `/`, `//`) and their inplace/reverse counterparts for the `Accumulation` class. - Verified that all arithmetic operations correctly maintain statistical data (sum of squares) where mathematically possible.
Installing into private directory
=================================
1. Create a venv and include the system-site packages:
`python3 -m venv venv --system-site-packages`
2. Active that venv: `. venv/bin/activate`
3. Install an editable package: `pip install --no-deps -e .`
This will use the system packages already installed.
Alternatively you can install withoout the system-site-packages:
python3 -m venv venv
. venv/bin/activate
pip install -e .
This will download newer packages and install them in the venv.
Description
Languages
Python
99.7%
Shell
0.3%