Install pysqlite in virtualenv with python3 support

I created virtualenv with:

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

After that, I tried installing pysqlite:

pip install pysqlite

But I got:

Downloading/unpacking pysqlite
  Downloading pysqlite-2.6.3.tar.gz (76kB): 76kB downloaded
  Running setup.py (path:/home/sigo/.virtualenvs/django/build/pysqlite/setup.py) egg_info for package pysqlite
    Traceback (most recent call last):
      File "<string>", line 17, in <module>
      File "/home/sigo/.virtualenvs/django/build/pysqlite/setup.py", line 85
        print "Is sphinx installed? If not, try 'sudo easy_install sphinx'."
                                                                           ^
    SyntaxError: invalid syntax
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 17, in <module>

  File "/home/sigo/.virtualenvs/django/build/pysqlite/setup.py", line 85

    print "Is sphinx installed? If not, try 'sudo easy_install sphinx'."

                                                                       ^

SyntaxError: invalid syntax

Pip seems to be trying to use python2. How can i solve this?

+2
source share
2 answers

There is no public version of pysqlite for Python 3.x. For Python 3.x, the sqlite3 module in the standard library is the latest version of pysqlite.

+8
source

I follow this  procedure to enable the JSON1 extension for SQLite.

At startup

python setup.py install

for pysqlitein virtual environment ( miniconda) I get the following output:

pysqlite Python 3. Python 3 sqlite3 .

export LD_LIBRARY_PATH=~/bin/jqlite/lib

.

+1

All Articles