Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
AmineDjeghri committed Oct 27, 2024
2 parents 853c1be + 1f161f0 commit fe9a317
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions docs/unix_workflow/README_unix.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ such as AWS & Azure VM instances and not having to install everything manually e
While it's particularly useful for Python developers, feel free to customize it for your specific needs.
The script is in bash (might move to Ansible in the future).

## Step 1 - Terminal customization

- Download and install the [Firacode font](https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/FiraCode.zip) on your primary operating system (Windows if you are using WSL).
- For Windows users: Automatic installation of the Terminal settings available with this [command](../windows_workflow/README_windows.md#12-software)

## Step 2—Run the script

- Run this command & choose what to install: oh-my-zsh, pl10k theme, miniconda & cuda (if you have a GPU) automatically:

## Step 1 - Terminal customization :
- Download and install the [Firacode font](https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/FiraCode.zip) on your primary operating system (Windows if you are using WSL).
- For Windows users: Automatic installation of the Terminal settings available with this [command](../windows_workflow/README_windows.md#12-software)
## Step 2—Run the script :
- Run this command & choose what to install: oh-my-zsh, pl10k theme, miniconda & cuda (if you have a GPU) automatically:
```bash
sh -c "$(wget https://raw.githubusercontent.com/AmineDjeghri/Awesome-Windows11-WSL-Linux/master/unix_workflow/setup_linux.sh -O -)"
```

- Do not run the script with `sudo` otherwise it will install some packages in `/root` instead of `/home`.
- Also, make sure to type `yes` when installing conda. If you are facing some problems, take a look at section 2.2.
- (Optional) If you have custom configurations in your `.bashrc`, consider copying them to the `.zshrc` file.
- (Optional) If you have ssh keys, copy them to the `.ssh` folder.
2 changes: 1 addition & 1 deletion docs/unix_workflow/setup_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ install_miniconda3() {
# Download and install Miniconda
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b
initialize_conda_shell

;;
Expand Down

0 comments on commit fe9a317

Please sign in to comment.