I'm trying to install Xdebug on Ubuntu Zesty (17.04), but am having trouble resolving dependencies. I'm following instructions from this url:
Point 4. there says "Run: phpize
(See the FAQ if you don't have phpize." When I do, I get the following error:
The program 'phpize' is currently not installed. You can install it by typing: sudo apt install php7.0-dev
I don't know why php7.0-dev is offered, my PHP version is 7.1. So instead, I tried installing php7.1-dev. Then I got this message:
php7.1-dev : Depends: libssl-dev but it is not going to be installed
Finally, if I try installing libssl-dev manually, this is what I get:
libssl-dev : Depends: libssl1.0.0 (= 1.0.2g-1ubuntu11) but 1.0.2k-1+deb.sury.org~yakkety+1 is to be installed
How do I resolve this problem?
0 Answers