랭킹으로 돌아가기
Code for A Programmer's Introduction to Mathematics
mathematicsprogrammerpython
주요 지표
스타 성장
스타
3.7k
포크
301
주간 성장
—
이슈
4
1k2k3k
2018년 10월2020년 1월2021년 5월2022년 8월2023년 12월2025년 4월2026년 7월
아티팩트npm
npm install programmers-introduction-to-mathematicsREADME
A Programmer's Introduction to Mathematics
This repository contains the code implementing the applications from each chapter of A Programmer's Introduction to Mathematics. All code is written in Python 3.x. Feel free to submit a pull request if you find a bug.
To install the requirements and run the examples, using pip and virtualenv (Python's standard packaging tools):
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
To run the test suite:
pytest
# with code coverage
pytest --cov-report html:cov_html --cov-report annotate:cov_annotate --cov
Docker
To build and run the code in the repository with docker, run
docker build -t pimbook -f Dockerfile .
docker run -it --name pimbook pimbook:latest
관련 저장소