Go to file
cheykrym abe79f18a9 f 2024-11-28 03:47:10 +03:00
.gitignore Update .gitignore, README.md, and 2 more files... 2024-10-14 21:30:18 +03:00
README.md Update README.md, menu_load.py, and 2 more files... 2024-10-15 00:22:25 +03:00
main.py f 2024-11-28 03:47:10 +03:00
requirements.txt Update config.py, system.py, and 5 more files... 2024-10-14 21:47:19 +03:00

README.md

chezahuynya1

bts metodi 1


Windows

  1. Installing Git and Python:
  1. Cloning the Repository:

     git clone https://git.dota2.pw/cheykrym/chezahuynya1.git
     cd chezahuynya1
    
  2. Creating a Virtual Environment:

     python -m venv env
    
  3. Installing Dependencies:

     .\env\Scripts\pip.exe install -r .\requirements.txt
    
  4. 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