Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install_instructions.jsx #22

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions frontend/gpt4all.io/src/components/install_instructions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand All @@ -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>
Expand All @@ -52,12 +61,16 @@ 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>
</Tabs>
)
}

export default InstallInstructions;
export default InstallInstructions;