Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 652 Bytes

SETUP_LINUX.md

File metadata and controls

30 lines (21 loc) · 652 Bytes

Installation Linux

Run the following commands in a Linux terminal:

# Clone the sources (Make sure git is installed)
$ git clone https://github.com/Erriez/pyside6-getting-started.git

# Change directory to the sources
$ cd pyside6-getting-started

# Create a Python virtual environment
$ virtualenv venv

# Activate virtual environment (Prompt changes to venv)
$ . venv/bin/activate

# Install dependencies including PySide6
(venv) $ pip install -r requirements.txt

To run an example on Linux:

# Activate virtual environment
$ . venv/bin/activate

# Run an example
(venv) $ python 01_gettings_started/01_simple_example.py