File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434``` python
3535from heartSegClinic.python_api import heartSegClinic
3636if __name__ == " __main__" :
37- # Provide input and output as file paths
37+ # Provide input folder/file path and output folder
3838 heartSegClinic(input_path, output_path)
3939```
4040
@@ -63,15 +63,15 @@ cd <repo_name>/
6363conda create -n heartSeg_310 python=3.10.13
6464conda activate heartSeg_310
6565#Install repo as package
66- pip install -e .
66+ pip install .
6767```
6868
6969### ** [ Without conda] Using pip only with an activated python env having Python 3.10.13 :**
7070
7171```
7272# Inside cloned repository
7373cd <repo_name>/
74- pip install -e .
74+ pip install .
7575```
7676
7777### ** [ Without conda] Using pyenv to create python 3.10.13 environment using CLI:**
@@ -100,7 +100,7 @@ source ~/Documents/pyEnvs/heartSeg/bin/activate
100100#6. Install pip packages after activating the heartSeg python environment
101101git clone <REPO_URL>
102102cd <REPO_NAME>/
103- pip install -e .
103+ pip install .
104104```
105105
106106Now that the python env is created and all the packages required are installed, you can run the main inference script from CLI :
@@ -111,7 +111,7 @@ Or from a python script:
111111``` python
112112from heartSegClinic.python_api import heartSegClinic
113113if __name__ == " __main__" :
114- # Provide input and output as file paths
114+ # Provide input folder/file path and output folder
115115 heartSegClinic(input_path, output_path)
116116```
117117
You can’t perform that action at this time.
0 commit comments