From a5b5dc188e47073d529a86dd8ef7942857dead5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Tue, 8 Nov 2022 10:13:35 -0300 Subject: [PATCH] pip - instalando pacotes e bibliotecas --- aula115.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/aula115.py b/aula115.py index 43bb363..32080f5 100644 --- a/aula115.py +++ b/aula115.py @@ -19,3 +19,13 @@ # Linux e Mac: source venv/bin/activate # Desativar: deactivate # +# pip - instalando pacotes e bibliotecas +# Instalar última versão: +# pip install nome_pacote +# Instalar versão precisa +# (tem outras formas também não mencionadas) +# pip install nome_pacote==0.0.0 +# Desinstalar pacote +# pip uninstall nome_pacote +# Congelar (ver pacotes) +# pip freeze