ImportError: No module named gyp
记得这个错误在编译atom编辑器的时候遇到过。如今在编译最新版本的skia时再次遇到,不过我没有心情去解决这个了,回退到一个比较老的版本就没有这个错误了。我算是躲过去了。
20141020更:
难逃此劫,最终还是下功夫解决它
git clone http://git.chromium.org/external/gyp.git
cd gyp
sudo ./setup.py install
解决了。
ImportError: No module named setuptools
wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz
tar zxvf setuptools-0.6c11.tar.gz
cd setuptools-0.6c11
python setup.py build
sudo python setup.py install
From: http://suzy8802.blog.163.com/blog/static/2124020642013126105845273/
编译最新版本的Skia:
1.下载 Skia 源码
$ git clone [email protected]:google/skia.git
2.不要使用系统自带ninja,使用depot_tools中的。
$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
$ export PATH=`pwd`/depot_tools:"$PATH"
$ cd skia
$ make
/home/xxx/work/skia/gyp_skia
GYP_GENERATORS environment variable not set, using default
GYP_GENERATORS is "ninja"
Updating projects from gyp files...
ninja -C out/Debug most
ninja: Entering directory `out/Debug'
[2139/2139] STAMP obj/gyp/most.actions_depends.stamp
$