Skip to content

Instantly share code, notes, and snippets.

View fl1pe's full-sized avatar
💭
Atualmente desempregado, mas ta tudo bem ( eu acho)

Felpes fl1pe

💭
Atualmente desempregado, mas ta tudo bem ( eu acho)
  • São João do Sóter, Maranhão, Brasil
View GitHub Profile
#! /bin/bash
sudo apt update && sudo apt upgrade -y
snap refresh
flatpak update -y
sudo apt autoremove -y
#! /bin/bash
# Suporte a flatpak
sudo apt install flatpak
# Atualizando pacotes
sudo apt update -y
sudo apt upgrade -y
#Git
@fl1pe
fl1pe / ambiente-dev-ubuntu.sh
Last active July 5, 2023 13:35 — forked from luizomf/ambiente-dev-ubuntu-curso-python.sh
Instalação ambiente dev Ubuntu 22 do curso de Python
#!/bin/bash
# Executar comandos a seguir para atualizar os pacotes
sudo apt update -y
sudo apt upgrade -y
# Só o Python
sudo apt install python3.10-full python3.10-dev -y
# Instalar pacotes a seguir
@fl1pe
fl1pe / ambiente-dev-ubuntu.sh
Created June 16, 2022 21:20 — forked from luizomf/ambiente-dev-ubuntu.sh
Ambiente de desenvolvimento Python no Ubuntu - Com VS Code, Google Chrome, ZSH, Oh-my-zsh, zsh-syntax-highlighting, zsh-autosuggestions e spaceship prompt.
#!/bin/bash
# Executar comandos a seguir para atualizar os pacotes
sudo apt update -y
sudo apt upgrade -y
# Instalar pacotes a seguir
sudo apt install dkms make perl gcc build-essential git curl -y
# Instalar Python 3.10 (opcional)