Attempting to install OAuth on Ubuntu but getting errors

前端 未结 2 1033
北恋
北恋 2021-01-24 04:46

I am attempting to install OAuth on Ubuntu Server 12.04 but getting errors. I am following this tutorial but something isn\'t lining up:

http://sergiopvilar.wordpress.co

相关标签:
2条回答
  • 2021-01-24 05:09

    Try This

    apt-get update
    apt-get install libpcre3 libpcre3-dev
    sudo pecl install mongodb
    
    0 讨论(0)
  • 2021-01-24 05:21

    Found it, I needed to install PCRE Library ( Perl 5 Compatible Regular Expression Library ).

    # apt-get update
    # apt-get install libpcre3 libpcre3-dev
    

    This worked for me.

    0 讨论(0)
提交回复
热议问题