Install pysqlite in virtualenv with python3 support

后端 未结 2 1249
被撕碎了的回忆
被撕碎了的回忆 2020-12-11 07:23

I\'ve created virtualenv with:

mkvirtualenv -p /usr/bin/python3.4 django

After, I tried install pysqlite:

pip install pysql         


        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-11 07:38

    I'm following this procedure to include the JSON1 extension for SQLite.

    When running the

    python setup.py install
    

    command for pysqlite within a virtual environment (miniconda) I receive the following output:

    pysqlite is not supported on Python 3. When using Python 3, use the sqlite3 module from the standard library.

    Setting

    export LD_LIBRARY_PATH=~/bin/jqlite/lib
    

    doesn't change this.

提交回复
热议问题