美文网首页Pythoner集中营
install scrapy on mac osx

install scrapy on mac osx

作者: 长物记 | 来源:发表于2015-12-23 12:22 被阅读276次

    又是python3,发现坑真多,能不能好好用python3了...

    macosx安装scrapy的坑真多,纪录一下

    首先支持的是python2,python3上安装成功却不能使用...

    libxml2,libxslt

        $brew install libxml2
        $brew install libxslt
        $brew link libxml2 --force
        $brew link libxslt --force
    

    command line

        $xcode-select --install
    

    lxml !!!出问题的一般都在这

        $CPATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/libxml2/ pip install lxml
    

    善用locate命令

    scrapy

        $pip install scrapy
    

    相关文章

      网友评论

        本文标题:install scrapy on mac osx

        本文链接:https://www.haomeiwen.com/subject/wmlvhttx.html