We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Install phalcon on linux mint 18

After executing the command line

Curl -s https://packagecloud.io/install/repositories/phalcon/stable/script.deb.sh | Sudo bash

This runs correctly but when I want to update I get W: El repositorio «https://packagecloud.io/phalcon/stable/linuxmint serena Release» no tiene un fichero de Publicación.

translated

W: The repository "https://packagecloud.io/phalcon/stable/linuxmint serena Release" does not have a Publication file.

How else do I install phalcon?

I'm using Linux Mint 18 as well and I get exactly the same result.

if I do the following:

sudo apt-cache search php7.0-phalcon

I get nothing. Any ideas?



39.2k
Accepted
answer

We don't support Linux Mint for package manager. So you have to install Phalcon by using build/compile flow.

edited Jan '17

For anyone still having this problem.

curl -s https://packagecloud.io/install/repositories/phalcon/stable/script.deb.sh | sudo bash

Edit the following file:

sudo nano /etc/apt/sources.list.d/phalcon_stable.list

change from:

deb https://packagecloud.io/phalcon/stable/linuxmint/ sarah main # ( or serena for LM 18.1)

deb-src https://packagecloud.io/phalcon/stable/linuxmint/ sarah main # ( or serena for LM 18.1)

to this:

deb https://packagecloud.io/phalcon/stable/ubuntu/ xenial main

deb-src https://packagecloud.io/phalcon/stable/ubuntu/ xenial main
sudo apt update

sudo apt install php7.0-phalcon -y

sudo service apache2 restart