Reputation: 832
I'm trying to install oauth on Ubuntu 16.04 server running apache2 and php7.0.
Can some kind soul please provide steps on how to install this on fresh Ubuntu install? I've tried everything I can find using SO and Google but can't find working solution for the combination above.
You'd think it was fairly straightforward... :-/
Upvotes: 0
Views: 658
Reputation: 101
First I don't know what you have tried so far and where you were stucked!! Anyway try below simple 3 steps..
Step 1: Update system
sudo apt-get update
Step 2: Install: php-oauth
After updating your system, run the following command
sudo apt-get install php-oauth
Step 3: Again update:
sudo apt-get update
Hope this helps for you!!
Upvotes: 1