From 5623c4f5c839d4fd99681526113b882da50486dc Mon Sep 17 00:00:00 2001 From: pragati-0208 Date: Fri, 12 Dec 2025 15:46:21 +0530 Subject: [PATCH] Docs: Add Windows installation instructions --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 96b81a7..5c648b8 100644 --- a/README.md +++ b/README.md @@ -242,3 +242,28 @@ Again, we use gplotsel2d to check the result: gplotsel2d (g2, c, 282) + +## Installation on Windows (Anaconda) + +If you are using Windows or Anaconda, you may face a permissions error when running: ```pip install .``` + + +To avoid this, install using: ```python -m pip install .``` + + +This ensures pip runs with the correct Python interpreter. + +If the issue continues, create a virtual environment: +```python -m venv venv``` +```venv\Scripts\activate``` +```python -m pip install .``` + + +These steps were tested on Windows 10/11 and resolve the installation problem. + + + + + + +