Last active
February 7, 2025 16:56
-
-
Save luizomf/8623264cbf69cd2619bcdee258628f41 to your computer and use it in GitHub Desktop.
Instalação Python 3.10 Ubuntu 22.04
This file contains hidden or 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
sudo apt update -y | |
sudo apt upgrade -y | |
sudo apt install git curl build-essential -y | |
sudo apt install gcc make default-libmysqlclient-dev libssl-dev -y | |
sudo apt install python3.10-full python3.10-dev -y |
Não tinha dado certo, professor, mas depois dei um jeitinho e já consigo até ver a versão de Python que estou usando! Vou rever o vídeo sobre como fazer o build, ainda estou bem perdida! Obrigada pela atenção!
Bia, nao te aconselho a atualizar o python no Linux...
vários utilitários do sistema utilizam o python no linux, se atualizar, alguns irão deixar de funcionar.
Aconselho deixar a versão que veio em seu linux.
Se quiser atualizar, use o pyenv (Instale o pyenv usando o tutorial do professor)
#pyenv update
#pyenv install -l
#pyenv install 3.13.1
#pyenv global 3.13.1
desta maneira vc não vai atrapalhar a versão que veio com o sistema, e conseguirá usar a versão 3.13.1 no VS.CODE
Espero ter ajudado!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Não tinha dado certo, professor, mas depois dei um jeitinho e já consigo até ver a versão de Python que estou usando! Vou rever o vídeo sobre como fazer o build, ainda estou bem perdida! Obrigada pela atenção!