Hi, I am attempting to complete the Arithmetic Formatter Project using Replit. I have written the code and tested it locally in Spyder and it satisfies all requirements (just testing it by hand). However when I run it on Replit I get this in the console :
Requirement already satisfied: pytest in ./.pythonlibs/lib/python3.10/site-packages (6.2.5) Requirement already satisfied: attrs>=19.2.0 in ./.pythonlibs/lib/python3.10/site-packages (from pytest) (23.1.0) Requirement already satisfied: py>=1.8.2 in ./.pythonlibs/lib/python3.10/site-packages (from pytest) (1.11.0) Requirement already satisfied: packaging in ./.pythonlibs/lib/python3.10/site-packages (from pytest) (23.2) Requirement already satisfied: toml in ./.pythonlibs/lib/python3.10/site-packages (from pytest) (0.10.2) Requirement already satisfied: pluggy<2.0,>=0.12 in ./.pythonlibs/lib/python3.10/site-packages (from pytest) (1.3.0) Requirement already satisfied: iniconfig in ./.pythonlibs/lib/python3.10/site-packages (from pytest) (2.0.0)
I do not get the output of any print statements, and it says I satisfy all requirements even if I sabotage my code.
This is just the output of checking required packages.
Can you post a link to your replit?
Just solved it: in the .replit file I had something like run = "package manager"
and changing it to run = "python3 main.py"
fixed the problem.
1 Like
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.