-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
053251c
commit c9fcbfb
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
layout: post | ||
title: "Install GROMACS on WSL with simple commands" | ||
image: assets/images/wsl2.png | ||
--- | ||
# Code Summary | ||
``` | ||
sudo apt update | ||
sudo apt upgrade | ||
sudo apt install gcc | ||
sudo apt install cmake | ||
sudo apt install build-essential | ||
sudo apt install libfftw3-dev | ||
sudo apt install gromacs | ||
``` | ||
|
||
# Explanation | ||
Step 1: Update the package lists: | ||
|
||
Run the command: sudo apt update | ||
Step 2: Upgrade the installed packages: | ||
|
||
Run the command: sudo apt upgrade | ||
Step 3: Install the GCC compiler: | ||
|
||
Run the command: sudo apt install gcc | ||
Step 4: Install CMake: | ||
|
||
Run the command: sudo apt install cmake | ||
Step 5: Install the essential build tools: | ||
|
||
Run the command: sudo apt install build-essential | ||
Step 6: Install the FFTW library development files: | ||
|
||
Run the command: sudo apt install libfftw3-dev | ||
Step 7: Install GROMACS: | ||
|
||
Run the command: sudo apt install gromacs | ||
These steps will update your package lists, upgrade the installed packages, install the GCC compiler, CMake, build tools, the FFTW library development files, and GROMACS on your system. | ||
|
||
|