Eclipse中PyDev中的sqlite3导出错误

Eclipse中PyDev中的sqlite3导出错误

本文介绍了Python:Eclipse中PyDev中的sqlite3导出错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

import sqlite3生成:

import sqlite3 generates:

Unused import: sqlite3
Unresolved import: sqlite3
sqlite3 Found at: DatabaseTests

import sqlite3

然而,这在终端中完美地工作使用python命令行。

However, this works perfectly in the terminal when using the python command-line.

我正在Mac Mountain Lion上运行,默认安装的是Python。我在Eclipse Indigo中使用PyDev。

I am running on a Mac Mountain Lion, with the default installation of Python. I am using PyDev in Eclipse Indigo.

推荐答案

我有相同的开发环境,遭受同样的问题。我已经解决了

I have the same development environment and suffered from the same issue. I have resolved it by


  • 切换到,

  • 只使用我从

  • ,并将Eclipse-Pydev上的默认Python解释器设置为MacPorts可执行文件

这对我来说非常适用,有一个问题,我仍然有时会得到一个未解析的导入警告,但是如果安装包,我的脚本仍然运行。

This works perfectly for me, with the one hitch that I still sometimes get an Unresolved import warning, but if the package is installed, my script still runs.

这篇关于Python:Eclipse中PyDev中的sqlite3导出错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 23:46