๐Ÿ“™
Bitcoin Core/Ord Client Setup on WINDOWS
  • ๐ŸงกInstalling Bitcoin Core
  • ๐Ÿ’™Installing Visual Studio & Rust
  • ๐Ÿ’›Installing & Indexing Ord Client
  • ๐Ÿ–คRunestones on Signet
  • ๐ŸคRunestones on Main-net
  • ๐ŸฉถInscribing on Ord
  • ๐ŸชHow to Find .cookie file
  • ๐Ÿ†™Upgrading Ord Client
  • ๐Ÿ†˜Common Issues
  • ๐Ÿ’šResources/Donation
Powered by GitBook
On this page
  • Visual Studio Install
  • Installing Microsoft Visual Studio
  • Rust Install
  • Checking if already installed
  • If Not Installed

Installing Visual Studio & Rust

PreviousInstalling Bitcoin CoreNextInstalling & Indexing Ord Client

Last updated 1 year ago

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:

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

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

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 Not Installed

Here is an example screenshot if it is not installed:

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"

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

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

A simple cdfilepath will navigate you there.

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

If it is installed, it will tell you the version. Go ahead and continue to "" section of this tutorial:

Go to the official Rust website and download Rust. Select the correct system (32 or 64 bit) based on the result above:

๐Ÿ’™
Installing Ord Client
https://www.rust-lang.org/tools/install
https://visualstudio.microsoft.com/downloads/