Skip to content

Commit d078e92

Browse files
committed
chore: update installation scripts to include application startup instructions and fix conda environment name
1 parent 468ed19 commit d078e92

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed
File renamed without changes.

install.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,10 @@ call python -m spacy download en_core_web_md
1414

1515
echo Installation completed.
1616

17+
echo To continue, please activate the conda environment with the following command:
18+
echo conda activate auto_ai
19+
20+
echo Then, run the following command to start the application:
21+
echo python automotive_ai/app.py
22+
1723
pause

install.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
conda create -n auto-ai python=3.12 -y
3+
conda create -n auto_ai python=3.12 -y
44

55
echo "Installing Python requirements..."
66
pip install -r requirements-dev.txt
@@ -9,3 +9,9 @@ echo "Downloading SpaCy model..."
99
python -m spacy download en_core_web_md
1010

1111
echo "Installation completed."
12+
13+
echo "To continue, please activate the conda environment with the following command:"
14+
echo "conda activate auto_ai"
15+
16+
echo "Then, run the following command to start the application:"
17+
echo "python automotive_ai/app.py"

0 commit comments

Comments
 (0)