Go to file
cheykrym d27394b502 Initial commit 2024-10-17 01:55:58 +03:00
app Initial commit 2024-10-17 01:55:58 +03:00
.DS_Store Initial commit 2024-10-17 01:55:58 +03:00
.gitignore Initial commit 2024-10-17 01:55:58 +03:00
README.md Initial commit 2024-10-17 01:55:58 +03:00
main.py Initial commit 2024-10-17 01:55:58 +03:00
requirements.txt Initial commit 2024-10-17 01:55:58 +03:00

README.md

metodi

bts metodi 1


Windows

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

     git clone https://git.dota2.pw/cheykrym/metodi.git
     cd metodi
    
  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/metodi.git
     cd metodi
    
  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/metodi.git
     cd metodi
    
  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