how to add path with module to python?

北城余情 提交于 2019-12-19 16:16:05

问题


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.


回答1:


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



回答2:


Install the module will be fine.

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

enjoy it.




回答3:


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.




回答4:


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



回答5:


Gyp is a custom build tool by Google. The instructions at https://code.google.com/p/v8/wiki/BuildingWithGYP should be helpful.

Go to the root of the V8 checkout or source directory, and run

svn co http://gyp.googlecode.com/svn/trunk build/gyp



来源:https://stackoverflow.com/questions/17706310/how-to-add-path-with-module-to-python

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!