This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installing collected packages: lxml | |
Running setup.py install for lxml | |
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'bugtrack_url' | |
warnings.warn(msg) | |
Building lxml version 3.3.3. | |
Building without Cython. | |
Using build configuration of libxslt 1.1.28 | |
Building against libxml2/libxslt in the following directory: //anaconda/lib | |
... | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
error: command 'cc' failed with exit status 1 | |
... | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
error: command 'cc' failed with exit status 1 |
It seems it tried to build lxml with packages libxml2 and libxsit from anaconda. Anaconda is a python distribution I installed to my machine, enabling easy installation of many scientific packages like scipy, matplotlib and pandas. It is strange because in virtual environment the python distribution should be the one within the environment.
After poking around, I found I had following line in my ~/.bash_profile:
# added by Anaconda 1.8.0 installer
export PATH="//anaconda/bin:$PATH"
It looks like to be added automatically when I installed Anaconda, making the python distribution in Anaconda the default one. In my virtual environment, where the supposed python distribution should be the virtual one, when I install packages, it still look for the system default one. By removing the line from bash profile, it seems fine now.
[TODO]