From a8a96ba19146ab6c041e7e3417e17663dfcdd789 Mon Sep 17 00:00:00 2001 From: Shurley Date: Fri, 5 Apr 2024 22:05:54 +0300 Subject: [PATCH] add instruction for install to WSL2 --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index ec88f6763..7c2fe8b45 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,28 @@ sudo apt-get install npm yarn npm install --global tern prettier yarn ``` +### WSL2 + +Install [GHCUP](https://www.haskell.org/ghcup/). + +``` console +curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh +``` + +Install [icarus-verilog](https://github.com/steveicarus/iverilog/) and [gtkwave](https://github.com/gtkwave/gtkwave). + +``` console +sudo apt-get install iverilog +sudo apt-get install gtkwave +``` + +Install [npm](https://github.com/npm/cli) and required developer tools for UI. + +``` console +sudo apt-get install npm yarn +npm install --global tern prettier yarn +``` + ### For machine learning base synthesis (optional) 1. Install python package manager: [poetry](https://python-poetry.org/docs/).