@if (this.isInstallationInProgress)
{
Please wait for the installation to complete...
}
else if (this.ShowInstallationPage)
{
AI Studio relies on the free and open-sourced third-party app Pandoc to process and retrieve data from local Office files (ex. Word) and later other text formats like LaTeX.
Unfortunately Pandoc's GPL license is not compatible with AI Studios licences, nonetheless software under GPL is generally free to use and free of charge as well. Therefore you have to accept Pandoc's GPL license before we can download and install Pandoc for free automatically for you (recommended). However you can download it yourself manually with the instructions below.
@if (this.isLoadingLicence)
{
}
else if (!string.IsNullOrWhiteSpace(this.licenseText))
{
}
Pandoc is distributed under the GNU General Public License v2 (GPL). By clicking "Accept GPL and Install", you agree to the terms of the GPL license and Pandoc will be installed automatically for you. Software under GPL is free of charge and free to use.
Accept GPL and install for free
If you prefer to install Pandoc yourself, please follow one of these two guides. Installers are only available for Windows and macOS.
Accept the terms of the GPL license and download the latest installer with the download button below.
Eventually you need to allow the download of the installer in the download window.
pandoc-@(LATEST_PANDOC_VERSION)-windows-x86_64.msi
pandoc-@(LATEST_PANDOC_VERSION)-arm64-macOS.pkg
pandoc-@(LATEST_PANDOC_VERSION)-x86_64-macOS.pkg
Execute the installer and follow the instructions.
Pandoc is distributed under the GNU General Public License v2 (GPL). By clicking "Accept GPL and download installer", you agree to the terms of the GPL license. Software under GPL is free of charge and free to use.
Accept GPL and download installer
Accept the terms of the GPL license and download the latest archive with the download button below.
Extract the archive to a folder of your choice, e.g.:
C:\Users\%USERNAME%\pandoc
~/pandoc
/usr/local/bin/pandoc
Open the folder and copy the full path to the @PandocProcessBuilder.PandocExecutableName file into your clipboard:
C:\Users\%USERNAME%\pandoc\pandoc-@(LATEST_PANDOC_VERSION)
~/pandoc/pandoc-@(LATEST_PANDOC_VERSION)
/usr/local/bin/pandoc/pandoc-@(LATEST_PANDOC_VERSION)
Add the copied path to your system's or user's PATH environment variable, restart your terminal, and check the installation by typing pandoc --version into your terminal:
> pandoc.exe --version
> pandoc @(LATEST_PANDOC_VERSION)
> pandoc --version
> pandoc @(LATEST_PANDOC_VERSION)
> pandoc --version
> pandoc @(LATEST_PANDOC_VERSION)
Pandoc is distributed under the GNU General Public License v2 (GPL). By clicking "Accept GPL and archive", you agree to the terms of the GPL license. Software under GPL is free of charge and free to use.
Accept GPL and download archive
}
else
{
@if (this.pandocInstallation == default)
{
}
else
{
switch (this.pandocInstallation)
{
case { CheckWasSuccessful: true, IsAvailable: true }:
Pandoc is installed and the version meets the requirements of MindWork AI Studio.
break;
case { CheckWasSuccessful: true, IsAvailable: false }:
Pandoc is installed, but the version is too old and does not meet the requirements of
MindWork AI Studio. AI Studio can help you install a newer version.
break;
case { CheckWasSuccessful: false }:
Pandoc doesn't seem to be installed on this system. AI Studio can help you install the correct version.
break;
}
}
}