This project requires the following Python packages:
streamlit
To get started with the project, follow the steps below:
First, clone the repository to your local machine:
git clone https://github.com/Yema7D/docs.git
cd docsIt'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 venvActivate the virtual environment:
- On Windows:
.\venv\Scripts\activate- On macOS and Linux:
source venv/bin/activateInstall 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.txtOnce everything is set up, you can run your project using the following command:
streamlit run main.py