This is a template to get you started with Python on Replit. It's ready to go so you can just hit run and start coding!
Simply hit run! You can edit the run command from the .replit
file.
To add packages to your repl, you can just import directly in the file you want to use the package in, and it will automatically be installed when you press the run button. Like below:
import math
import pandas as pd
from flask import Flask
You could also install packages by using the Replit packager interface in the left sidebar.
If you need help you might be able to find an answer on our docs page. Feel free to report bugs and give us feedback here.