An open API service indexing awesome lists of open source software.

https://github.com/bbc-esq/pyqt6-pdf-viewer

A simple PDF viewer created with PyQt6 that you can use by itself or incorporate in other scripts. Hard to find!
https://github.com/bbc-esq/pyqt6-pdf-viewer

pdf pdf-viewer pyqt6 pyqt6-gui

Last synced: 6 months ago
JSON representation

A simple PDF viewer created with PyQt6 that you can use by itself or incorporate in other scripts. Hard to find!

Awesome Lists containing this project

README

          

# PyQt6 PDF Viewer
Simple PDF viewer made with PyQt6. Scoured the Internet and for days and finally found a way to do it so I'm posting it here! Check out my other repository if you want to use Pyside6 instead.

# Installation

> First, make sure you're running [Python 3.10+](https://www.python.org/downloads/release/python-31011/)

### Setup
Download the latest releast and unzip the folder to somewhere on your computer. Then, open the folder containing my repository files, create a command prompt, and create a virtual environment:
```
python -m venv .
```
Activate the virtual environment:
```
.\Scripts\activate
```
Upgrade pip
```
python -m pip install --upgrade pip
```
Install Dependencies
```
pip install -r requirements.txt
```

### Run Program
```
python pyqt6_pdf_viewer.py
```

## Please STAR if you enjoy so it's easier for other people to find this repository!