The example in the Configuration.md file includes some markup that seems misaligned and could be cleaned up for better clarity. Here's a fixed version for the example:
-
Check if Python is already installed:
python3 --version
If Python is installed, this command will display the installed version.
-
Install Python (if not installed):
-
On Ubuntu/Debian-based systems:
sudo apt update sudo apt install python3 python3-pip
-
On macOS:
brew install python
-
On Windows:
Download and install Python from the official Python website.
-
-
Verify the installation:
python3 --version pip3 --version
-
Check if a Shell is already installed:
Most systems come with
bashorzshpre-installed. You can check the default shell by running:echo $SHELL
-
Install a Shell (if needed):
-
On Ubuntu/Debian-based systems:
sudo apt update sudo apt install bash
-
On macOS:
Update to the latest version ofzshusing Homebrew:brew install zsh
-
On Windows:
Install a shell like Git Bash or use the Windows Subsystem for Linux (WSL).
-
-
Set the default shell:
chsh -s /bin/bash # Replace /bin/bash with the path to your preferred shell.
This revised version improves formatting, aligns the code blocks properly, and ensures consistency across all instructions. Let me know if you'd like further modifications!