Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 1.1 KB

install.md

File metadata and controls

30 lines (27 loc) · 1.1 KB

Installation instructions (on centos7):

Those preparations are required:

  • Fulfill installation prerequisites
  • Create the virtual environment for python (not mandatory)
  • Install click

Installation prerequisites

  1. Install python3 - based on those instructions
    • As root: yum install centos-release-scl
    • As root: yum install rh-python36

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