Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.04 KB

README.md

File metadata and controls

64 lines (41 loc) · 1.04 KB

Project Setup

Requirements

This project requires the following Python packages:

  • streamlit

Installation

To get started with the project, follow the steps below:

1. Clone the Repository

First, clone the repository to your local machine:

git clone https://github.com/Yema7D/docs.git
cd docs

2. Create a Virtual Environment

It's a good practice to create a virtual environment for your project. This helps to manage dependencies and avoid conflicts with other projects.

python -m venv venv

Activate the virtual environment:

  • On Windows:
.\venv\Scripts\activate
  • On macOS and Linux:
source venv/bin/activate

3. Install Dependencies

Install the required packages using pip and the requirements.txt file:

  • On Develeppement Mode:
pip install -r requirements.txt
  • On Production Mode:
pip install -r requirements.txt

Running the Project

Once everything is set up, you can run your project using the following command:

streamlit run main.py