Use run command - GONE

Tell us what’s happening:

The “Use run command” button no longer exists on Replit/epl.it/Replit.com

The default run command appears to be python3 main.py without quotes.
You must not type this in manually when you clone a freeCodeCamp reop form Github, as is required to do any and all of the projects.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36

Challenge: Data Analysis with Python Projects - Demographic Data Analyzer

Link to the challenge:

As an aside if you get an error like “no module named pandas” or similar, you must install these into the virutal environment. There is a venv folder that exists. Use this

$ source venv/bin/activate
(venv)$ pip install pandas

blah blah blah

(venv)$ deactivate
$

can close an reload the shell

$ python3 main.py (or hit your Run button which is properly configure now)

WORKS!