Skip to content

Instantly share code, notes, and snippets.

View ptica's full-sized avatar

Jan Ptacek ptica

View GitHub Profile
@ptica
ptica / install_oci8_ubuntu_16.04_php7.1.md
Last active July 19, 2018 14:24 — forked from hewerthomn/install_oci8_ubuntu_16.04_php7.1.md
How to install OCI8 on Ubuntu 16.04 and PHP 7.1
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
#curl https://www.npmjs.org/install.sh | sh
#npm install commented out as it may result in SSL: certificate subject name 'a.sni.fastly.net'npm ..