Skip to content

Instantly share code, notes, and snippets.

View telemac-dev's full-sized avatar

Harold Gautschi telemac-dev

View GitHub Profile
@telemac-dev
telemac-dev / ambiente-dev-ubuntu.sh
Created September 27, 2022 19:36 — 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)
@telemac-dev
telemac-dev / install_pyenv.sh
Created September 26, 2022 20:41 — forked from mttmantovani/install_pyenv.sh
Install pyenv on Ubuntu 20.04
#!/bin/bash
sudo apt-get install git python3-pip python-is-python3 make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev curl libffi-dev
pip install virtualenvwrapper
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
git clone https://github.com/pyenv/pyenv-virtualenv.git ~/.pyenv/plugins/pyenv-virtualenv
git clone https://github.com/pyenv/pyenv-virtualenvwrapper.git ~/.pyenv/plugins/pyenv-virtualenvwrapper
cat << EOF >> ~/.bashrc