Skip to content

Commit

Permalink
updated a post
Browse files Browse the repository at this point in the history
  • Loading branch information
paulshamrat committed May 14, 2023
1 parent 053251c commit c9fcbfb
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions _posts/2023-05-14-gromacs-install-wsl.md
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.


0 comments on commit c9fcbfb

Please sign in to comment.