- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有点问题。我在 Debian Squeeze 上,我想安装 sqlite2。问题是,当我尝试:
# pip install pysqlite2
我得到:
Downloading/unpacking pysqlite2
Could not find any downloads that satisfy the requirement pysqlite2
No distributions at all found for pysqlite2
Storing complete log in /root/.pip/pip.log
我在尝试时遇到同样的错误:
# pip install python-pysqlite2
我也试过 easy_install:
# easy_install pysqlite2
Searching for pysqlite2
Reading http://pypi.python.org/simple/pysqlite2/
Couldn't find index page for 'pysqlite2' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
No local packages or download links found for pysqlite2
Best match: None
Traceback (most recent call last):
File "/usr/local/bin/easy_install", line 8, in <module>
load_entry_point('setuptools==0.6c11', 'console_scripts', 'easy_install')()
File "/usr/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/setuptools/command/easy_install.py", line 1712, in main
File "/usr/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/setuptools/command/easy_install.py", line 1700, in with_ei_usage
File "/usr/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/setuptools/command/easy_install.py", line 1716, in <lambda>
File "/usr/local/lib/python2.7/distutils/core.py", line 152, in setup
dist.run_commands()
File "/usr/local/lib/python2.7/distutils/dist.py", line 953, in run_commands
self.run_command(cmd)
File "/usr/local/lib/python2.7/distutils/dist.py", line 972, in run_command
cmd_obj.run()
File "/usr/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/setuptools/command/easy_install.py", line 211, in run
File "/usr/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/setuptools/command/easy_install.py", line 434, in easy_install
File "/usr/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/setuptools/package_index.py", line 475, in fetch_distribution
AttributeError: 'NoneType' object has no attribute 'clone'
我还尝试从 here 下载 pyslite2 包,当我尝试使用时:
# dpkg -i python-pysqlite2-dbg_2.6.0-1_amd64.deb
我收到以下错误:
Selecting previously deselected package python-pysqlite2-dbg.
(Reading database ... 144103 files and directories currently installed.)
Unpacking python-pysqlite2-dbg (from python-pysqlite2-dbg_2.6.0-1_amd64.deb) ...
dpkg: dependency problems prevent configuration of python-pysqlite2-dbg:
python-pysqlite2-dbg depends on python-pysqlite2 (= 2.6.0-1); however:
Package python-pysqlite2 is not configured yet.
python-pysqlite2-dbg depends on python-dbg; however:
Package python-dbg is not installed.
dpkg: error processing python-pysqlite2-dbg (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
python-pysqlite2-dbg
我真的很乐意为此提供帮助。
提前致谢!
最佳答案
只需运行 apt-get install 即可安装所有缺少的依赖项:
apt-get -f install
关于python - 如何在 Debian Squeeze 上安装 pysqlite2?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13725022/
我使用的是 OSX 10.6,最近将 Python 从 2.6 升级到了 2.7,因此我必须升级 python 软件包。 这次我决定使用brew,并使用brew安装了sqlite、libspatial
在我的 Mac 上安装 sqlite 时,当它尝试创建 pysqlite2-doc 目录时,我的权限被拒绝。有什么想法吗? 最佳答案 您使用的 Mac OSX 和 Python 的确切版本是什么?所有
我需要将图像文件保存到 python 中的 sqlite 数据库中。我找不到解决办法。我该怎么做? 提前致谢。 最佳答案 写入 - cursor.execute('插入文件 (id, name, bi
我正在使用 pysqlite 制作一个程序来处理一些数据。对多个表和列中的相似字段进行相同的操作,所以我想我可以将sql语句参数化如下: def foo(): column = 'c' tab
我尝试安装 pysqlite。安装过程中开始出现一些可疑的东西。为什么我输入: python setup.py build 最后我得到了如下信息: src/module.c:286: error: ‘
我正在使用 pysqlite 构建和搜索关键字数据库以及与每个关键字对应的 URL 集。我的数据库搜索策略使用 1 个关键字效果很好,因为它只需要 SQL 语句中的 1 个 WHERE 子句。类似于:
我有一个带有内部数据库连接的对象,该连接在其整个生命周期内都处于事件状态。在程序运行结束时,必须提交并关闭连接。到目前为止,我使用了显式的 close 方法,但这有点麻烦,尤其是当调用代码中可能发生异
Gang,我开始使用 pySQLite,我正在尝试找到一个示例来说明如何在插入新记录(如果数据库中尚不存在)之前查询数据库中的现有记录。我觉得我忽略了一个非常基本的功能。 谢谢! 最佳答案 创建表时使
我想要 Python 和 sqlite 之间有一个接口(interface)。两者都安装在机器上。我有旧版本的 Python (2.4.3)。因此,默认情况下不包含 pysqlite。首先,我尝试通过
我认为我是个笨蛋,也许没有导入正确的包,但是当我导入时...... from pysqlite2 import dbapi2 as sqlite import types import re impo
使用 pysqlite 如何将用户定义类型用作比较中的值,例如。 g:“... WHERE 列名称 > 用户类型”? 例如,我定义了一个具有必要注册、转换器等的 bool 类型。Pysqlite/Sq
我使用的是 pysqlite,默认情况下,它不启用事务性 DDL(尽管 DDL 是来自 sqlite3 客户端的事务性)。 如何在 pysqlite 中启用事务 DDL? 最佳答案 pysqlite
是否有一些简单的方法或如何将 sqlite 数据库集成到 gtk.TreeModel (TreeView) 中? 我想要的是在 treeview 中显示来自 db 的数据,当我更改 db 中的某些内容
我正在使用 pysqlite 与 SQLite 数据库对话,我想知道检查 UPDATE SQL 语句是否真的成功更新某些内容的正确方法是什么一张 table 。 在 pysqlite 中执行此操作后是
美好的一天。 我在 Windows 上编译 pysqlite 时遇到问题。我已经设法开始编译了很多工作,但现在我遇到了这个错误: d:/mingw/bin/../lib/gcc/mingw32/4.7
我希望用户能够选择显示哪些订单结果,例如按年龄),我不想在从数据库中获取它们后对它们进行排序。 显然,如果用户能够指定影响 SQL 命令的输入,则需要对其进行清理,我通常会使用参数化,但 pysqli
我创建了 virtualenv: mkvirtualenv -p /usr/bin/python3.4 django 之后,我尝试安装 pysqlite: pip install pysqlite 但
Lion 升级后,我不得不重新安装我的 python 包,并在安装 PIL 和 pysqlite 时遇到问题。 ... unable to execute gcc-4.2: No such file
在 pysqlite 中,违反 NOT NULL 或 UNIQUE 约束同样会引发 IntegrityError。遗憾的是,此 Exception 类型不提供错误代码,而仅提供一条消息。 所以,假设我
pip install pysqlite失败,并输出以下错误日志: ➜ ~ pip install pysqlite Collecting pysqlite Using cached pysq
我是一名优秀的程序员,十分优秀!