-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: instalação extensão Python no VSCode
- Loading branch information
1 parent
69fa53b
commit 8ae0154
Showing
4 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
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
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
39 changes: 39 additions & 0 deletions
39
book/cap02-ambientes-desenvolvimento/sec02-3-configuracao-vscode.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Configuração VSCode | ||
|
||
<div style="text-align: justify"> | ||
|
||
Agora que estamos com o VSCode instalado, vamos configurá-lo com o mínimo necessário para iniciar nosso desenvolvimento em Python! | ||
|
||
## Extensão Python no VSCode | ||
|
||
O VSCode por si só é um editor de texto quase que comum. | ||
|
||
Para que ele entenda código Python, é necessário instalarmos a extensão do Python no VSCode. | ||
|
||
```{admonition} Nota | ||
:class: note | ||
Percebam que não estamos instalando o Python, mas sim a **extensão Python no VSCode!** São coisas distintas! O Python foi instalado nesta [seção](windows). | ||
``` | ||
|
||
Para instalar a extensão Python, siga os passos abaixo (demonstrados visualmente no gif): | ||
- Abra o seu VSCode | ||
- (opcional) Feche a janela de boas vindas caso ela venha aberta por padrão | ||
- Clique no botão de extensões no menu lateral vertical esquerdo | ||
- Procure por Python | ||
- Clique no botão azul **Install** | ||
|
||
```{image} ../gifs/install-python-ext-vscode.gif | ||
:name: install-python-ext-vscode | ||
``` | ||
|
||
```{admonition} Curiosidade | ||
:class: tip | ||
Já ouvi espalharem a notícia de que "*o Python havia sido comprado pela Microsoft*". A notícia mostrava o print da tela da extensão do Python seguida do nome Microsoft (microsoft.com) ao lado do logo do Python. | ||
Tal notícia **não é é verdadeira**! O que é fato/verdade: o próprio VSCode e a extensão Python (não o Python em si) foram desenvolvidos pela Microsoft. Python continua sendo open-source e gratuito. | ||
``` | ||
|
||
Neste momento estamos prontos para criarmos o nosso primeiro programa! 🥳 | ||
|
||
|
||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.