Update screenshots and macos link

Yudi
2021-04-26 09:53:45 -03:00
parent db370c247b
commit cc642c7c93
+14 -14
@@ -8,9 +8,9 @@
## Windows
[![](https://i.imgur.com/K6WdpaY.png)](https://dotnet.microsoft.com/download/dotnet/3.1/runtime)
[![](https://i.imgur.com/T4hUMYl.png)](https://dotnet.microsoft.com/download/dotnet/3.1/runtime)
The **x64** installer is for **64-bit** systems<br/>
The **x64** installer is for **64-bit** systems
The **x86** installer is for **32-bit** systems
@@ -23,42 +23,42 @@ Direct download links:
## macOS
[Click the recommended version in this page](https://dotnet.microsoft.com/download/dotnet-core)<br/>
Look for the download link in the '**.NET Core Runtime**' (not the preview version) table, under **Installers**:<br/>
[Check out the latest version in this page](https://dotnet.microsoft.com/download/dotnet/3.1).
Look for the download link in the '**.NET Runtime**' section, under **Installers**:
![](https://i.imgur.com/d9GwLZn.png)
[![](https://i.imgur.com/8xQLem1.png)](https://dotnet.microsoft.com/download/dotnet/3.1)
## Linux
**You only need to install .NET Core v3.1 <u>Runtime</u>**
**You only need to install .NET Core <u>Runtime</u> v3.1**
Check out the instructions for your distro:
* [Debian](https://docs.microsoft.com/dotnet/core/install/linux-debian#supported-distributions)
* [Ubuntu](https://docs.microsoft.com/dotnet/core/install/linux-ubuntu#supported-distributions)
* [Debian](https://docs.microsoft.com/dotnet/core/install/linux-debian#supported-distributions)
* [Fedora](https://docs.microsoft.com/dotnet/core/install/linux-fedora#supported-distributions)
For other distros, please check the _'Linux package managers'_ menu on the left of [this page](https://docs.microsoft.com/dotnet/core/install/linux-package-managers).
For other distros, please check the _'Install on Linux'_ menu on the left of [this page](https://docs.microsoft.com/dotnet/core/install/linux).
## Docker
**Docker** users don't need to install .NET runtime. Please refer to the [Docker usage instructions](https://github.com/Tyrrrz/DiscordChatExporter/wiki/Docker-usage-instructions) page for more information.
<br>
## Verify installation
You can check which version of **.NET Core** is installed by following these instructions:
### Step 1
**Windows:** Open Command Prompt (aka `cmd`)<br/>
**Windows:** Open Command Prompt (aka `cmd`)
**macOS and Linux:** Open `Terminal`
### Step 2
Execute: `dotnet --info`<br/>
Run: `dotnet --info`
If **.NET Core Runtime** is correctly installed, the command will output the following:
```
...
.NET Core runtimes installed:
Microsoft.NETCore.App x.x.x [C:\path\to\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App x.x.x [C:\path\to\dotnet\shared\Microsoft.WindowsDesktop.App]
.NET runtimes installed:
Microsoft.NETCore.App 3.1.x [C:\path\to\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 3.1.x [C:\path\to\dotnet\shared\Microsoft.WindowsDesktop.App]
...
```