0

WARNING: The script pygmentize is installed in '/home/maulik/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.

1 Answers1

0
    import sys
    sys.path.insert(0,'/home/maulik/.local/bin')

You can check more on this here: adding directory to sys.path /PYTHONPATH , PYTHONPATH vs. sys.path and Permanently add a directory to PYTHONPATH

Dan Constantinescu
  • 1,151
  • 1
  • 5
  • 10