> For the complete documentation index, see [llms.txt](https://guide.ordinalshelp.com/bitcoin-core-ord-client-setup-on-windows/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.ordinalshelp.com/bitcoin-core-ord-client-setup-on-windows/installing-visual-studio-and-rust.md).

# Installing Visual Studio & Rust

## Visual Studio Install

### Installing Microsoft Visual Studio

You will need Visual Studio in order to install Ord client. You can also use it to install Rust.

Go to Visual Studios website and install. You can select the Free Community version:  <https://visualstudio.microsoft.com/downloads/>

Be sure to select the "Desktop Development with C++" click Install.

<figure><img src="/files/EmeQF93gMvUX24NaBa4V" alt=""><figcaption></figcaption></figure>

Once installed, in your Search bar at the bottom of the screen, type Developer. Click "Developer PowerShell for VS"

<figure><img src="/files/tRkIrnV0ZZORnEe4cNE0" alt=""><figcaption></figcaption></figure>

## Rust Install

### Checking if already installed

First, let's check to see if you already have Rust installed on your PC.

In PowerShell, run the following command:

```
rustc --version
```

If it is installed, it will tell you the version. Go ahead and continue to "[Installing Ord Client](/bitcoin-core-ord-client-setup-on-windows/installing-and-indexing-ord-client.md)" section of this tutorial:

<figure><img src="/files/FOzB31E3713LFZ1zab3N" alt=""><figcaption></figcaption></figure>

### If Not Installed

Here is an example screenshot if it is not installed:

<figure><img src="/files/41X71RosewVySJ8y8UId" alt=""><figcaption></figcaption></figure>

Go ahead and figure out if your Computer is a 32 or 64-bit system. Run the following command in PowerShell:

```
systeminfo | find "System Type"
```

<figure><img src="/files/tsUs6nBOV62Dfe9AQo6D" alt=""><figcaption></figcaption></figure>

Go to the official Rust website <https://www.rust-lang.org/tools/install> and download Rust. Select the correct system (32 or 64 bit) based on the result above:

<figure><img src="/files/kf0orZ1GJRH8R0rjz47A" alt=""><figcaption></figcaption></figure>

The file will be most likely in your Downloads folder. File name is "rustup-init". No need to click on it.

<figure><img src="/files/LRwpFMJ0tcnxksHYyiTC" alt=""><figcaption></figcaption></figure>

In Developer PowerShell, navigate to your Downloads folder (or whatever folder the "rustup-init" was saved to).&#x20;

A simple `cd`*`filepath`* will navigate you there.

<figure><img src="/files/rCRNoA5TG6Pkkl5j4oBV" alt=""><figcaption></figcaption></figure>

Run the following command to install Rust:

```
.\rustup-init.exe -y
```

Close out of the current Developer PowerShell window and open a new one. Run the version command to see if it is successfully installed:

```
rustc --version
```

<figure><img src="/files/8Vi9dCstyBenwuCpEnxT" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://guide.ordinalshelp.com/bitcoin-core-ord-client-setup-on-windows/installing-visual-studio-and-rust.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
