qwen2
Helenbaclayon Bacalso commited on
Commit
bd100ec
·
1 Parent(s): 0b0c828

Fix python -> python3

Browse files
Files changed (1) hide show
  1. .replit +2 -2
.replit CHANGED
@@ -1,9 +1,9 @@
1
  entrypoint = "main.py"
2
- run = "pip install -r requirements.txt && python main.py"
3
  modules = ["python-3.11"]
4
 
5
  [nix]
6
  channel = "stable-25_05"
7
 
8
  [deployment]
9
- run = ["python", "main.py"]
 
1
  entrypoint = "main.py"
2
+ run = "pip install -r requirements.txt && python3 main.py"
3
  modules = ["python-3.11"]
4
 
5
  [nix]
6
  channel = "stable-25_05"
7
 
8
  [deployment]
9
+ run = ["python3", "main.py"]