Table of Contents
This is a simple online interpreter for Python that you can use to run your small code snippets and maybe use to solve LeetCode problems. Enjoy!
These are the technologies I used in this project:
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
First you need python in you computer Follow these instructions to install python
* Go to the official Python website https://www.python.org/downloads/.
* Click on the "Download Python" button to download the latest version for Windows.
* Run the following commands
```sh
sudo apt update
sudo apt install python3
```
* If you have brew installed, run the following command
```
brew install python
```
Now you have python in your machine we're going to setup the app.
- Clone the repo
git clone https://github.com/Abdelhay1212/online_compiler
- Navigate to the project
cd online_compiler/
- Install python VENV and activate it
python -m venv venv # in windows source venv/Script/activate # in linux source venv/bin/activate
- Install the dependencies of the project
pip -r install requirement.txt
- Now you are ready to run the app
python run.py
The app should be running in localhost, port 5000
Distributed under the MIT License. See LICENSE.txt
for more information.
ABDELHAY ET-TAOUAF - @my_x_account - ettaouafabdelhay87@gmail.com
Project Link: https://github.com/Abdelhay1212/online_compiler