On Friday, October 2, 2015 at 9:29:59 AM UTC+13, Nikolaus Rath wrote: > > On Sep 30 2015, Jamie Nelson <[email protected] <javascript:>> wrote: > > sudo alternatives --set python /usr/bin/python3.4 > > This won't interfere with S3QL operation, but is very like to get you > into trouble. The "python" command should always refer to Python 2.x, > while "python3" should give you a Python 3.x version. >
Thanks for that tip. > > > easy_install -H *.python.org distribute > > That should not be necessary. > Cool, so it can be removed from the script. > > > wget http://sqlite.org/2015/sqlite-autoconf-3081101.tar.gz > > tar zxfv sqlite-autoconf-3081101.tar.gz > > cd sqlite-autoconf-3081101 > > ./configure > > make > > sudo make install > > sudo \cp -f /usr/local/lib/libsqlite* /usr/lib64/ > > That line is pretty terrible. You should never put stuff into /usr/. Did > you encounter any problems when you *not* install SQlite by hand, or if > you *not* install SQLite by yum and install to /usr/local by hand? > It looked like the Amazon Linux distribution comes with sqlite pre installed, even if i hadn't installed it using yum it was already there. And the applications all compiled against the version in /usr/lib64 instead of the new one installed. And the version that comes with Amazon Linux is too old for apsw to run, i had a min version error. > > > sudo hash -r > This was added after pip was upgraded because pip wasn't working after the update until this was run. I added it after replacing the sqlite libs just in case it caused the same error, but if you think that in this case it wouldn't do anything, it can be removed too. > This doesn't do anything. > > > Best, > -Nikolaus > Thanks for helping make this better. > > -- > GPG encrypted emails preferred. Key id: 0xD113FCAC3C4E599F > Fingerprint: ED31 791B 2C5C 1613 AF38 8B8A D113 FCAC 3C4E 599F > > »Time flies like an arrow, fruit flies like a Banana.« > -- You received this message because you are subscribed to the Google Groups "s3ql" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
