WSL 2 for Win10 https://docs.microsoft.com/en-us/windows/wsl/install-win10 Optional (but useful! I might stop using putty): Terminal for Windows https://docs.microsoft.com/en-us/windows/terminal/get-started Python 3.7 https://gist.github.com/chandr3sh/8e63613689312dd6882b1d5791742db5 sudo apt update && sudo apt upgrade -y sudo apt install python3.7-minimal sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1 sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 2 sudo update-alternatives --config python3 Choose "2" These additional steps were required: sudo apt-get install python-apt cd /usr/lib/python3/dist-packages sudo ln -s apt_pkg.cpython-{36m,37m}-x86_64-linux-gnu.so sudo apt install python3-pip pip3 install --user pipenv echo "PATH=$HOME/.local/bin:$PATH" >> ~/.bashrc nano ~/.bashrc The next command has issues with Windows' parentheses, so the PATH value needs to be quoted in this file before running "source" Add quotes around PATH on last line, so that it looks like PATH='/home [...]' Instead of PATH=/home [...] source ~/.bashrc Install Chia https://github.com/Chia-Network/chia-blockchain/wiki/INSTALL#ubuntudebian cd ~ sudo apt-get update sudo apt-get upgrade -y git clone https://github.com/Chia-Network/chia-blockchain.git -b latest --recurse-submodules cd chia-blockchain sh install.sh . ./activate chia init chia keys delete_all chia keys add Paste your mnemonic Install Plotman https://github.com/ericaltendorf/plotman#installation pip install --force-reinstall git+https://github.com/ericaltendorf/plotman@main plotman config generate Make folders for Plotman logs mkdir ~/chia mkdir ~/chia/logs Optional: Map a network drive to a drive letter (Z:/, Y:/, etc. -- I will use Z:/ in this example) Optional: Mount network drive in WSL sudo mkdir /mnt/z sudo nano /etc/fstab Add line to end: Z: /mnt/z drvfs defaults 0 0 sudo mount -a Configure Plotman (DO NOT USE TABS IN YAML DOCUMENT -- ONLY SPACES) nano ~/.config/plotman/plotman.yaml Ensure you're still in venv. If not in venv: . ~/chia-blockchain/./activate Run Plotman plotman interactive