× NETGEAR will be terminating ReadyCLOUD service by July 1st, 2023. For more details click here.
Orbi WiFi 7 RBE973
Reply

libsqlite3-dev

c0de
Aspirant

libsqlite3-dev

hi forum,

im trying to fetch this but i get this error msg
HOME-NAS:~# apt-get -y install libsqlite3-dev
Reading Package Lists... Done
Building Dependency Tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
libsqlite3-dev: Depends: libsqlite3-0 (= 3.5.9-6.netgear1) but 3.7.5-1.netgear1 is to be installed
E: Broken packages


any help would be appriciated.
Message 1 of 5
irrelevant
Aspirant

Re: libsqlite3-dev

Argh! Me too.

(and http://xkcd.com/979/ applies!)
Message 2 of 5
MiltJR111
Aspirant

Re: libsqlite3-dev

+1

I'm trying to get Subversion working, and this is my holdup, apparently :(.
Message 3 of 5
Paling
Aspirant

Re: libsqlite3-dev

I'm having the same problems installing SABnzbd, did somebody fix this error?
Message 4 of 5
Paling
Aspirant

Re: libsqlite3-dev

I fixed it with the following code:


--- setup.py.orig 2011-02-06 18:38:35.000000000 +0700
+++ setup.py 2011-02-06 18:58:35.000000000 +0700
@@ -99,10 +99,11 @@ def get_amalgamation():

zf = zipfile.ZipFile("tmp.zip")
files = ["sqlite3.c", "sqlite3.h"]
+ directory = zf.namelist()[0]
for fn in files:
print "Extracting", fn
outf = open(AMALGAMATION_ROOT + os.sep + fn, "wb")
- outf.write(zf.read(fn))
+ outf.write(zf.read(directory+fn))
outf.close()
zf.close()
os.unlink("tmp.zip")
Message 5 of 5
Top Contributors
Discussion stats
  • 4 replies
  • 3270 views
  • 0 kudos
  • 4 in conversation
Announcements