Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python: sqlite no matching distribution found for sqlite

I tried to install that library by pip in console. I'm using win7 and python v. 2.7.10. But failed to achive. Acording to this - It can be used for my version of python too.

I tried to install by several ways:

pip install sqlite

pip install sqlite3

pip install sqlite-devel

What is wrong here?

    Full error: Could not find a version that satisfies the requirement(). 
No matching distribution found for ...
like image 701
Rocketq Avatar asked Feb 24 '16 15:02

Rocketq


People also ask

What is Pysqlite?

pysqlite is an interface to the SQLite 3. x embedded relational database engine. It is almost fully compliant with the Python database API version 2.0 also exposes the unique features of SQLite.


1 Answers

What makes you think you need to install this? sqlite is part of the standard library, and does not need installing.

like image 54
Daniel Roseman Avatar answered Sep 20 '22 15:09

Daniel Roseman