У нас вы можете посмотреть бесплатно How to Install BURAI on Windows & Linux – Quantum ESPRESSO GUI Tutorial или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
00:00 Downloading BURAI GUI & Prerequisites 00:21 How to Install Java for BURAI (Required) 02:07 Downloading BURAI 1.3 from GitHub 02:36 Launching BURAI on Windows 03:11 Configuring Quantum Espresso Paths (pw.x) 04:00 Setting up Crystal Structure (Aluminum Example) 04:24 How to Run SCF Calculation 06:01 analyzing SCF Convergence Graph 06:14 Viewing the Input File Code 07:35 Running Geometric Optimization #BURAI #QuantumEspresso #GUI #JavaInstall #Windows11 #LinuxTutorial #MaterialsScience #ComputationalPhysics #DFT #OpenJDK #ScientificComputing #DesktopShortcut #LinuxGUI #QuantumChemistry #SoftwareTutorial #quantumespresso #quantum #material #physics #quantumphysics #quantumchemistry #materialscience #solidstates Step-by-step guide to install and run *BURAI* (version 1.3.1) on *Windows* and **Linux**, including Java setup: --- *Prerequisite: Install Java* BURAI requires Java. Follow these steps first: #### *Windows* 1. *Download Java* Go to [Java’s official download page](https://java.com/download/). Click *Agree and Start Free Download* to get the installer. 2. *Install Java* Run the downloaded `.exe` file (e.g., `jre-8uXXX-windows-x64.exe`). Follow the installer prompts (use default settings). 3. *Verify Installation* Open *Command Prompt* and run: ```cmd java -version ``` Ensure it prints Java version details (e.g., `java version "1.8.0_XXX"`). #### *Linux* 1. *Install OpenJDK* Open a terminal and run: ```bash sudo apt update && sudo apt install openjdk-11-jre # For Debian/Ubuntu OR sudo dnf install java-11-openjdk # For Fedora/CentOS ``` 2. *Verify Installation* ```bash java -version ``` Confirm it shows a version like `openjdk 11.0.XX`. --- *Install and Run BURAI* #### *Windows* 1. *Download BURAI* Visit [BURAI Releases](https://github.com/BURAI-team/burai/r.... Download `BURAI-1.3.1.jar` (the executable JAR file). 2. *Create a Dedicated Folder* Create a folder (e.g., `C:\BURAI`) and move `BURAI-1.3.1.jar` there. 3. *Run BURAI* Double-click the JAR file. If Java is installed, it should launch. **If it doesn’t open**: Right-click the JAR file → *Open With* → **Java(TM) Platform SE binary**. 4. *Create a Desktop Shortcut (Optional)* Right-click the JAR file → *Send to* → **Desktop (create shortcut)**. Rename the shortcut to `BURAI`. #### *Linux* 1. *Download BURAI* Open a terminal and run: ```bash wget https://github.com/BURAI-team/burai/r... ``` Or download via browser and move it to a directory like `~/BURAI`. 2. *Run BURAI* Open a terminal, navigate to the JAR’s location, and run: ```bash java -jar BURAI-1.3.1.jar ``` 3. *Create a Desktop Shortcut (Optional)* Create a `.desktop` file: ```bash nano ~/.local/share/applications/burai.desktop ``` Add: ```ini [Desktop Entry] Name=BURAI Exec=java -jar /path/to/BURAI-1.3.1.jar Icon=/path/to/any/icon.png # Optional: Download an icon Terminal=false Type=Application Categories=Science; ``` Save and make it executable: ```bash chmod +x ~/.local/share/applications/burai.desktop ``` --- *Troubleshooting* 1. **Java Not Detected**: Reinstall Java and ensure the `JAVA_HOME` environment variable is set. 2. **JAR File Won’t Open**: Run it via terminal: `java -jar BURAI-1.3.1.jar` to see error logs. 3. **Linux Dependencies**: Install missing libraries (e.g., GTK) using your package manager. --- BURAI is the free, open-source GUI that makes Quantum ESPRESSO click-and-run instead of command-line only. This guide covers Java installation, BURAI 1.3.1 setup, and creating desktop shortcuts on both Windows and Linux. What you will learn Install Java without admin rights on Windows Install OpenJDK via apt/dnf on Linux Download BURAI 1.3.1 from official GitHub release Run JAR files on Windows (double-click) and Linux (terminal) Create permanent desktop shortcuts for one-click launch Troubleshoot "Java not found" and dependency errors