Go to file
cheykrym 5ba9131a15 Обновить app/labs/labTest.py 2024-11-28 11:50:55 +03:00
app Обновить app/labs/labTest.py 2024-11-28 11:50:55 +03:00
.DS_Store lab 1 and 3 2024-10-17 03:04:08 +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 Update lab2.py, lab4.py, and 5 more files... 2024-11-20 07:26:21 +03:00
requirements.txt Update lab2.py, lab4.py, and 5 more files... 2024-11-20 07:26:21 +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