Missing sqlite3 after Python3 compile

后端 未结 3 1309
暖寄归人
暖寄归人 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:52

    You need to install libsqlite3 (Debian based) or sqlite-devel (RedHat based) and the associated header files before compiling Python because Python needs to find them during the compile process.

    Did you make sure to run:

    1. ./configure
    2. make
    3. make install

    In this specific order? With no missing steps?

提交回复
热议问题