Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 771 Bytes

README.md

File metadata and controls

49 lines (30 loc) · 771 Bytes

python-calculator

Basic calculator functions in python

Working in a conda environment

Make sure you have conda or miniconda installed.

Create conda environment

conda create --name python-calculator python=3.8

Activate conda environment

conda activate python-calculator

Install dependencies

python -m pip install -r requirements.txt

Install the package

Make sure you have activated your conda environment.

conda activate python-calculator

Then run:

pip install .

Running tests

Make sure you have activated your conda environment. Then run:

python -m pytest