From 8682761ca46a64987ac24bf7a5fdbb276d3fd30d Mon Sep 17 00:00:00 2001
From: cosmic-snow <134004613+cosmic-snow@users.noreply.github.com>
Date: Wed, 12 Jul 2023 16:05:58 +0200
Subject: [PATCH] Update install_instructions.jsx

Add note about required AVX/AVX2 instructions.
---
 .../src/components/install_instructions.jsx   | 21 +++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/frontend/gpt4all.io/src/components/install_instructions.jsx b/frontend/gpt4all.io/src/components/install_instructions.jsx
index 7a351cb..c6c4590 100644
--- a/frontend/gpt4all.io/src/components/install_instructions.jsx
+++ b/frontend/gpt4all.io/src/components/install_instructions.jsx
@@ -25,7 +25,12 @@ const InstallInstructions = () => {
             After download and installation you should be able to find the application in the directory you specified in the installer.
             You will find a desktop icon for GPT4All after installation.
           </p>
-          <p>NOTE: On Windows, the installer might show a security complaint. This is being addressed as we're actively setting up cert sign for Windows.</p>
+          <p>NOTE:
+            <ul>
+              <li>On Windows, the installer might show a security complaint. This is being addressed as we're actively setting up cert sign for Windows.</li>
+              <li>The CPU needs to support <a href="https://en.wikipedia.org/wiki/Advanced_Vector_Extensions">AVX or AVX2 instructions</a>.</li>
+            </ul>
+          </p>
         </div>
       </TabsContent>
       <TabsContent value="macos">
@@ -38,7 +43,11 @@ const InstallInstructions = () => {
             On macOS if you chose the default install location you'll find the application in the shared /Applications folder.
           </p>
           <p>
-            NOTE: You will be need to be on the latest version of OSX.
+            NOTE:
+            <ul>
+              <li>You will be need to be on the latest version of OSX.</li>
+              <li>The CPU needs to support <a href="https://en.wikipedia.org/wiki/Advanced_Vector_Extensions">AVX or AVX2 instructions</a>.</li>
+            </ul>
           </p>
         </div>
       </TabsContent>
@@ -52,7 +61,11 @@ const InstallInstructions = () => {
 
           </p>
           <p>
-            NOTE: You may need to build from source if you are not working off of the latest version of Ubuntu.
+            NOTE:
+            <ul>
+              <li>You may need to build from source if you are not working off of the latest version of Ubuntu.</li>
+              <li>The CPU needs to support <a href="https://en.wikipedia.org/wiki/Advanced_Vector_Extensions">AVX or AVX2 instructions</a>.</li>
+            </ul>
           </p>
         </div>
       </TabsContent>
@@ -60,4 +73,4 @@ const InstallInstructions = () => {
   )
 }
 
-export default InstallInstructions;
\ No newline at end of file
+export default InstallInstructions;