-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unnecessary directory change from README.md and update run.sh …
…to change to detective directory before executing main.py
- Loading branch information
qijun han
committed
Dec 9, 2024
1 parent
617f4b4
commit b7c6026
Showing
2 changed files
with
1 addition
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,6 @@ pip install -r requirements.txt | |
|
||
Linux: | ||
```bash | ||
cd detective | ||
sudo chmod +x run.sh | ||
./run.sh | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
#!/bin/bash | ||
|
||
PYTHON_INTERPRETER=$(which python3) | ||
|
||
echo "Current Python interpreter: $PYTHON_INTERPRETER" | ||
|
||
cd detective/ | ||
sudo $PYTHON_INTERPRETER main.py |