我已经用自制软件在OSX El Capitan上安装了pyexiv2但是在尝试使用它时,却找不到它。
$ brew install pyexiv2
Warning: pyexiv2-0.3.2_1 already installed
$ python mapillary_tools-master/python/geotag_from_gpx.py photos file.gpx
Traceback (most recent call last):
File "/Users/nighto/Downloads/mapillary_tools-master/python/geotag_from_gpx.py", line 6, in <module>
import pyexiv2
ImportError: No module named pyexiv2
答案 0 :(得分:1)
当安装pyexiv2时,brew有一个非常重要的输出,我错过了:
==> Caveats
Python modules have been installed and Homebrew's site-packages is not
in your Python sys.path, so you will not be able to import the modules
this formula installed. If you plan to develop with these modules,
please run:
mkdir -p /Users/YOUR_USER/Library/Python/2.7/lib/python/site-packages
echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> /Users/YOUR_USER/Library/Python/2.7/lib/python/site-packages/homebrew.pth
所以你只需要运行这两个命令就能正常工作。