![]() |
Installation CI4 - Cloning failed using an ssh key for authentication - solution - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9) +--- Thread: Installation CI4 - Cloning failed using an ssh key for authentication - solution (/showthread.php?tid=77849) |
Installation CI4 - Cloning failed using an ssh key for authentication - solution - Muzikant - 10-26-2020 I was facing a problem during a CodeIgniter 4 installation via Composer on my fully updated Linux Mint 20: composer create-project codeigniter4/appstarter project-root The terminal threw me an error when Composer attempted to install fzaninotto/faker and waited for a token. Code: - Installing fzaninotto/faker (dev-master 26c3c62): Cloning 26c3c624bb The solution for me was to close a terminal and installing a git package with it's dependencies git-man and liberror-perl. Next time a CodeIgniter 4 installation passed with no problem. I am not the only one who had this problem: https://github.com/composer/composer/issues/9205 RE: Installation CI4 - Cloning failed using an ssh key for authentication - solution - MrLeche - 01-12-2021 (10-26-2020, 11:46 AM)Muzikant Wrote: I was facing a problem during a CodeIgniter 4 installation via Composer on my fully updated Linux Mint 20: RE: Installation CI4 - Cloning failed using an ssh key for authentication - solution - includebeer - 01-12-2021 (01-12-2021, 09:53 AM)MrLeche Wrote: Seriously what the hell does that even do? How did things become so complicated that people couldn't even get past the installation? Guys you know cellphones and most things nowadays don't come with user manual right? because people, make, things, simpler! period. Come on! If you know nothing about composer or git, you can still download the .zip and install CI the “old way”. But if you think you can develop a web application without reading a single line of any user manual, good luck with that. RE: Installation CI4 - Cloning failed using an ssh key for authentication - solution - iRedds - 01-13-2021 The fzaninotto/faker package is no required for app works. Use the --no-dev key composer create-project codeigniter4/appstarter project-root --no-dev |