Installing Twisted through pip broken on one server

后端 未结 2 829
Happy的楠姐
Happy的楠姐 2020-12-14 17:53

I am setting up a virtualenv on a new server, and when I used pip on our requirements file, it kept dying on Twisted. I commented the Twisted line out, and everything else i

相关标签:
2条回答
  • 2020-12-14 18:16

    Ok after struggling with this for several hours, I figured out the problem.

    Running pip install --verbose twisted helped with the diagnosis.

    The error message is misleading. The problem is that I built a custom installation of Python 2.7.10 without having previously installed libbz2-dev. So the steps to fix this were:

    1. sudo apt-get install libbz2-dev
    2. cd /<untarred python source dir>
    3. ./configure --prefix=<my install path> --enable-ipv6
    4. make
    5. make install

    With this done, I can now create virtual environments and pip install Twisted.

    0 讨论(0)
  • 2020-12-14 18:26

    I run into this issue when I tried install requirements on python 2.7.16. I've chosen to install package directly from zip archive Twisted releases
    pip install https://github.com/twisted/twisted/archive/twisted-18.7.0.zip - it works for me

    0 讨论(0)
提交回复
热议问题