Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 992 Bytes

File metadata and controls

70 lines (47 loc) · 992 Bytes

Installation

There are many ways to install the package

PYPI install

:linenos:
pip install ctfsolver

Github package install

pip install ctfsolver @ git+ssh://git@github.com/nikolasfil/CTFSolverScript.git

Github repo clone and install

:linenos:
git clone https://github.com/yourusername/ctfsolver.git
cd ctfsolver

Makefile Installation Commands

You can use the provided Makefile for various installation options:

Development install

make install-dev

Editable install (for development)

make install-pack-dev

Install development dependencies

make install-req-dev

Install documentation dependencies

make install-req-docs

Install all dependencies (dev + docs)

make install-req-all

All-in-one setup for development

make setup-all-dev

All-in-one setup for usage

make setup