chezahuynya1 ============= bts metodi 1 -------- ### Windows 1. *Installing Git and Python:* * [Git for Windows](https://git-scm.com/downloads/) * [Download python 3.x](https://www.python.org/downloads/) 2. *Cloning the Repository:* git clone https://git.dota2.pw/cheykrym/chezahuynya1.git cd chezahuynya1 3. *Creating a Virtual Environment:* python -m venv env 4. *Installing Dependencies:* .\env\Scripts\pip.exe install -r .\requirements.txt 5. *Running the Project:* .\env\Scripts\python.exe .\main.py ### Mac 1. *Installing Git and Python:* - 2. *Cloning the Repository:* git clone https://git.dota2.pw/cheykrym/chezahuynya1.git cd chezahuynya1 3. *Creating a Virtual Environment:* python3 -m venv env 4. *Installing Dependencies:* . ./env/bin/activate pip3 install -r requirements.txt deactivate 5. *Running the Project:* env/bin/python3 main.py ### Linux 1. *Installing Git and Python:* sudo apt update sudo apt -y install git sudo apt -y install python3 sudo apt -y install python3-pip 2. *Cloning the Repository:* git clone https://git.dota2.pw/cheykrym/chezahuynya1.git cd chezahuynya1 3. *Creating a Virtual Environment:* python3 -m venv env 4. *Installing Dependencies:* . ./env/bin/activate pip3 install -r requirements.txt deactivate 5. *Running the Project:* env/bin/python3 main.py