Missing sqlite3 after Python3 compile

后端 未结 3 1287
暖寄归人
暖寄归人 2021-01-02 22:09

My question is much like several others. Having manually compiled Python, sqlite3 is missing:

\"enter

3条回答
  •  礼貌的吻别
    2021-01-02 22:29

    After apt-get install libsqlite3-dev

    then

    ./configure --prefix=/opt/python3.7.4 --with-ssl --with-pydebug
    
    make
    make install
    

    Note: You might need apt-get install libssl-dev aslo, openssl version must above 1.0.2 if you are compiling python3.7

    For me, I'm using ubuntu 14.04 (trusty) I can't find a libssl-dev package to meet the requirement compiling python3.7 with ssl support. I modify my /etc/apt/sourcelist.d

    deb http://cn.archive.ubuntu.com/ubuntu/ xenial main restricted
    deb-src http://cn.archive.ubuntu.com/ubuntu/ xenial main restricted
    

    after install a newer libssl-dev, then change it back to the original one

    deb http://cn.archive.ubuntu.com/ubuntu/ trusty main restricted
    deb-src http://cn.archive.ubuntu.com/ubuntu/ trusty main restricted
    

提交回复
热议问题