Skip to content

adrienmalin/TETRIS2000

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  icon TETRIS 2000

Yet another Tetris clone, with Qt5 on Python 3

screenshot

Downloads

Build

  • On Linux:

    mkdir TETRIS2000                                          # Create folder
    cd TETRIS2000                                             # Enter folder
    git clone https://git.malingrey.fr/adrien/TETRIS2000.git  # Clone repository
    python3 -m venv venv                                      # Create a virtual environment
    source venv/bin/activate                                  # Activate the virtual environment
    pip3 install -r requirements.txt                          # Install requirements
    python -m fbs run                                         # Run application
    python -m fbs freeze                                      # Freeze
  • On Windows:

    Download and extract source. Open a command prompt and go to extracted directory

    REM Create and activate a virtual environment
    python -m venv venv
    call venv\scripts\activate.bat
    REM Install requirements
    pip install -r requirements.txt
    REM Run application
    python -m fbs run
    REM Create installer
    python -m fbs installer

Credits

Thanks

Thanks to my pythonista friends krakozaure and ABR