Changes between Initial Version and Version 1 of Ticket #24080, comment 32


Ignore:
Timestamp:
Aug 24, 2015, 3:40:35 PM (9 years ago)
Author:
Mark Beacom

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24080, comment 32

    initial v1  
    33
    44Ultimately, I '''resolved''' the issue by upgrading manually via SQLite 3.8.11.1 source (https://www.sqlite.org/2015/sqlite-autoconf-3081101.tar.gz) and apt-get install --reinstall'ing  python 2.7.10!
     5
     6You can install SQLite 3.8.11.1 by building from the previously mentioned source .tar.gz:
     7
     8
     9{{{
     10$ wget https://www.sqlite.org/2015/sqlite-autoconf-3081101.tar.gz
     11$ tar xvfz sqlite-autoconf-3081101.tar.gz
     12$ cd sqlite-autoconf-3081101
     13$ ./configure --prefix=/usr/local
     14$ make
     15$ make install
     16$ sudo apt-get install --reinstall python2.7 python2.7-minimal python2.7-dev python2.7-dbg
     17}}}
Back to Top