Search code examples
pythonv8gyp

how to add path with module to python?


I try to build V8 javascript engine. When I try to invoke the command python build/git_v8, I get error:

File build/gyp_v8, line 48 in < module >
     import gyp
ImportError: No module named GYP

How I can tell python where search GYP module and what is the correct path to the module in the folder GYP?

My version of python is 2.6.2.2, recommended in build instructions.


Solution

  • Obviously, the module gyp.py is not in the search path of modules (sys.path). sys.path is an array variable in sys module which contains all known paths of the modules. You can add the directory containing the module gyp.py manually by either of these methods:

    1. set via PYTHONPATH environment variable (see http://docs.python.org/3/using/cmdline.html?highlight=path#envvar-PYTHONPATH)

    2. Add the path manually within your python script prior to importing gyp. For example, if the directory containing this module is /home/you/gyp:

    import os, sys
    sys.path.append('/home/you/gyp')
    
    import gyp
    #--------- That's it ------------
    

    You can check if this path already exists using the debug lines

    import sys
    print(sys.path) # version python 3.2
    

    or

    print sys.path # version python 2.7