Installation instructions (on centos7):
Those preparations are required:
- Fulfill installation prerequisites
- Create the virtual environment for python (not mandatory)
- Install click
Installation prerequisites
- Install python3 - based on those instructions
- As root:
yum install centos-release-scl
- As root:
yum install rh-python36
- As root:
Creating virtual environment for python (not mandatory)
The venv module provides support for creating lightweight “virtual environments” with their own site directories, optionally isolated from system site directories. venv creates a folder which contains all the necessary executables to use the packages that a Python project would need.
## set enviroment
python3 -m venv pdb_prep_env
installing pdb_prep
Click is a Python package for creating beautiful command line interfaces. if you created virtualenv load it:
source "$venv_dir/bin/activate"
Update pip and install pdb_prep:
pip install --upgrade pip
pip install pdb_prep