diff --git a/Part1Unet/README.md b/Part1Unet/README.md
index ad306dd142887e969d3d25abd79995f9f6c285b8..0be206b512c71628d713bb4c02320e0303fb69bb 100644
--- a/Part1Unet/README.md
+++ b/Part1Unet/README.md
@@ -9,4 +9,9 @@ setenv LD_LIBRARY_PATH "${CONDA_PREFIX}/lib:${LD_LIBRARY_PATH}"
 jupyter notebook
 ```
 
+If the conda env `qlife25-unet` is not found. Install it using `unet_env.yml` file
 
+```
+setconda
+conda env create -f unet_env.yml
+```
\ No newline at end of file
diff --git a/Part2Cellpose/README.md b/Part2Cellpose/README.md
index 7628f66268260b9eddc68b386f79740affd8b479..6189fa16b475960a4b85136a0ca4ea3468314d49 100644
--- a/Part2Cellpose/README.md
+++ b/Part2Cellpose/README.md
@@ -6,4 +6,16 @@ To run the notebook:
 setconda
 conda activate /users/bioensei/mphan/.conda/envs/qlife25-cellpose
 jupyter notebook
+```
+
+If the conda env `qlife25-cellpose` is not found. Install it by following commands
+
+```
+setconda
+conda create -n qlife25-cellpose python=3.10 -y
+conda activate qlife-cellpose
+conda install pytorch=1.12.0 cudatoolkit=11.3 -c pytorch
+pip uninstall torch
+pip install 'cellpose[gui]'
+pip install notebook==6.1.5 scikit-image matplotlib
 ```
\ No newline at end of file