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