Skip to content

Instantly share code, notes, and snippets.

@baciotti
Last active May 30, 2020 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baciotti/1f46f0692dac96877bf9a25c047c4aa2 to your computer and use it in GitHub Desktop.
Save baciotti/1f46f0692dac96877bf9a25c047c4aa2 to your computer and use it in GitHub Desktop.
Configurações no Ubuntu Bash do Windows 10 para poder instalar o Code Igniter via composer
# ---------------------------------------------------------------------------------------
# Configurações para conseguir instalar o Code Igniter 4 no Ubuntu System do Windows 10
# Tiago Bacciotti Moreira - 30/05/2020
# ---------------------------------------------------------------------------------------
# Já tenho instalado o Xampp em minha máquina Windows
# Atualiza fonte de pacotes e a distro
sudo apt-get update
sudo apt-get upgrade
# Instalei composer, git e ncftp
# git e ncftp opcional
sudo apt install composer
sudo apt-get install ncftp
sudo apt-get install git
# Quando fui executar composer foi pedindo algumas libs
# Tá tudo aqui, instalei o apache2 também. Depois vou remover o xampp
# Reuni tudo em um único install
sudo apt-get install ext-curl curl apache2 php php-curl php-intl php-xml php-mbstring zip unzip php-zip
# Para criar o app
composer create-project codeigniter4/appstarter teste
@baciotti
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment