Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 854 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 854 Bytes

Description

Kernel for a telegram bot based on python-telegram-bot This project uses Pipenv for managing Python dependencies and creating isolated environments. The following instructions detail how to set up the development environment and run the application.

Setup Instructions

Install Pipenv and Set Up the Environment

To get started, you can run the following script to install Pipenv, create a virtual environment, install dependencies, and execute the application:

  • Install pipenv

    • python3 -m pip install pipenv
  • Create a Pipenv environment and install packages using requirements.txt

    • Use pipenv to install dependencies directly from requirements.txt
      • pipenv install -r requirements.txt
  • Activating Pipenv shell

    • pipenv shell
      • python3 main.py

Also you can use [run.sh](run.sh)