Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to add path with module to python?

Tags:

python

v8

gyp

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.

like image 349
Qba Avatar asked Jul 17 '13 17:07

Qba


4 Answers

Install the module will be fine.

git clone https://chromium.googlesource.com/external/gyp
cd gyp
sudo ./setup.py install

enjoy it.

like image 78
kangear Avatar answered Oct 31 '22 14:10

kangear


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
like image 32
snb Avatar answered Oct 31 '22 15:10

snb


I don't have enough reputation to comment -- but as @chrylis reported above -- links change. The new link for git'ing gyp is: https://chromium.googlesource.com/external/gyp.git if anyone else is hunting. Other than that -- the installation worked for me.

like image 2
Joe Steele Avatar answered Oct 31 '22 15:10

Joe Steele


If you choose to install the module, notice the google source url has changed.

git clone https://chromium.googlesource.com/experimental/external/gyp
cd gyp
sudo ./setup.py install
like image 1
Peiming Hu Avatar answered Oct 31 '22 16:10

Peiming Hu