0968.html 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Actual Budget - Open Source Finance Management - on Windows</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Accounting,Accounting Software,Expense Tracker,Expense Tracking,Homelab,Income Tracking,NodeJS,Windows,Microsoft Windows,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Actual Budget - Open Source Finance Management - on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="11/26/2024 06:51:57 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Install Actual Budget - Open Source Finance Management - on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Actual Budget?</h2>
  26. <blockquote><em>Actual is a local-first personal finance tool. It is 100% free and open-source, written in NodeJS, it has a synchronization element so that all your changes can move between devices without any heavy lifting. -<a href="https://github.com/actualbudget/actual" target="_blank">https://github.com/actualbudget/actual</a></em></blockquote>
  27. <h2>Installing Actual Budget</h2>
  28. <ol>
  29. <li>Log into the Windows device</li>
  30. <li>Download the latest Actual Budget release <a href="https://github.com/actualbudget/actual/releases/latest" target="_blank">Download</a></li>
  31. <li>Download NodeJS 16 <a href="https://nodejs.org/en/download/prebuilt-installer/" target="_blank">Download</a></li>
  32. <li>Download Git for Windows <a href="https://github.com/git-for-windows/git/releases/tag/v2.46.2.windows.1" target="_blank">Download</a></li>
  33. <li><label for="cb_li_917989_0">Download Microsoft Visual C++ </label><label for="cb_li_917989_0"><a href="https://aka.ms/vs/16/release/vc_redist.x64.exe" target="_blank">Download</a></label></li>
  34. <li>Install Microsoft Visual C++</li>
  35. <li>Install Git for Windows, accepting all the defaults</li>
  36. <li>Install NodeJS, accepting all the defaults</li>
  37. <li>Extract the downloaded Actual Budget files</li>
  38. <li>Rename the extracted folder actualbudget</li>
  39. <li>Cut the actualbudget folder to a location it can safely run from, C:\Apps\actualbudget in this example</li>
  40. <li>Right click the Start button &gt; Settings &gt; System &gt; About</li>
  41. <li>Click the Advanced system settings option</li>
  42. <li>Click the Environment Variables...</li>
  43. <li>Edit the System Path variable</li>
  44. <li>Click the New button</li>
  45. <li>Add the Git for Windows \bin directory (ie C:\Program Files\Git\bin)</li>
  46. <li>Click OK to all open dialog windows</li>
  47. <li>Click on the Start menu &gt; type cmd &gt; Right click on Command Prompt &gt; Run as administrator</li>
  48. <li>Run the following commands in the Command Prompt window
  49. <div class="codeBlock CMD"># change directory to actualbudget, C:\Apps\actualbudget in this example<br />
  50. cd C:\Apps\actualbudget<br />
  51. # update npm<br />
  52. npm install -g npm<br />
  53. # install yarn<br />
  54. npm install -g yarn<br />
  55. # fix dependencies<br />
  56. yarn install<br />
  57. # run actual<br />
  58. yarn start</div>
  59. </li>
  60. <li>Open a web browser and navigate to http://DNSorIP:3001</li>
  61. <li>Click the Don&#39;t use a server link</li>
  62. <li>Click Start Fresh</li>
  63. <li>Welcome to Actual Budget</li>
  64. </ol>
  65. <p>Source: <a href="https://actualbudget.org/docs/install/local/" target="_blank">https://actualbudget.org/docs/install/local/</a></p> </div>
  66. </div>
  67. </body>
  68. </html>