Skip to content

Latest commit

 

History

History
35 lines (34 loc) · 1.95 KB

installing_on_windows.md

File metadata and controls

35 lines (34 loc) · 1.95 KB

Installing on Windows

  1. Press the Windows key
  2. Type 'Powershell'
  3. Right click 'Windows Powershell'
  4. Click 'Run as Administrator'
  5. Type wsl --install. This is the "Windows Subsystem for Linux" needed to use Linux commands later in this installation
  6. Press Enter
  7. Wait for install to complete
  8. Restart your computer
  9. Re-open Windows Powershell using steps 1-4
  10. Type wsl and press Enter
  11. Wait for the new Ubuntu window to finish installing
    1. Create a username and password
  12. Close all Powershell and Ubuntu windows
  13. Press the Windows key and type 'Ubuntu', then click 'Ubuntu'
  14. Type sudo apt install npm and press Enter. This is the NPM package library installer
  15. Type y and press Enter when/if prompted
  16. Wait for download to complete
  17. Type sudo npm install vult -g and press Enter. This is the Vult compiler
  18. Type your password and press Enter when/if prompted
  19. Type git clone --recursive https://github.com/DatanoiseTV/PicoADK-FreeRTOS-Template picoadk-template and press Enter
  20. Type cd / and press Enter
  21. Type cd mnt/c and press Enter
  22. You are now in your computer's C drive. Use 'cd filepath', replacing the word filepath with the actual path to your 'picoadk-template' folder. For example: cd users/johnsmith/documents/picoadk-template
  23. Type cd picoadk-template and press Enter
  24. Type export PICO_SDK_FETCH_FROM_GIT=1 and press Enter
  25. Type mkdir build && cd build and press Enter
  26. Type sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi build-essential and press Enter
  27. Type y and press Enter when/if prompted
  28. Wait for download to complete
  29. Type cmake .. and press Enter
  30. Wait while it downloads, it may take a long time
  31. Type make and press Enter
  32. Wait for build to complete. This may take a while