Install pysqlite in virtualenv with python3 support

后端 未结 2 1243
被撕碎了的回忆
被撕碎了的回忆 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:53

    There is no public version of pysqlite for Python 3.x. For Python 3.x, the sqlite3 module in the standard library is the most up-to date version of pysqlite there is.

提交回复
热议问题