Last active
October 29, 2020 14:55
-
-
Save gildemberg-santos/7ed106bf834e02b597157646adda0290 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/bash | |
clear && | |
echo "Criando Ambiente de Desenvolvimento" && | |
python3 -m pip install --upgrade pip && | |
clear && | |
sudo dnf install virtualenv && | |
clear && | |
sudo dnf install gcc gobject-introspection-devel cairo-devel cairo-gobject-devel pkg-config python3-devel gtk3 && | |
clear && | |
virtualenv venv -p /usr/bin/python3 && | |
source venv/bin/activate && | |
clear && | |
python3 -m pip install --upgrade pip && | |
clear && | |
venv/bin/pip install pycairo && | |
venv/bin/pip install PyGObject && | |
deactivate && | |
clear && | |
echo "Ambiente de Desenvolvimento Criado" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
update