TETRIS2000/README.md
2018-11-11 14:22:47 +01:00

2.9 KiB

  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://github.com/adrienmalin/TETRIS2000        # Clone repository
    python3 -m venv venv                                       # Create a virtual environment
    source venv/bin/activate                                   # Activate the virtual environment
    pip install fbs PyQt5==5.9.2 PyInstaller==3.3.1 qdarkstyle # 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 fbs PyQt5==5.9.2 PyInstaller==3.3.1 qdarkstyle
    REM Run application
    python -m fbs run
    REM Create installer
    python -m fbs installer
    

Credits

Thanks

Thanks to my pythonista friends krakozaure and ABR