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!
- Host: GitHub
- URL: https://github.com/bbc-esq/pyqt6-pdf-viewer
- Owner: BBC-Esq
- Created: 2023-07-02T11:40:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-31T02:06:00.000Z (about 1 year ago)
- Last Synced: 2024-07-31T04:40:02.725Z (about 1 year ago)
- Topics: pdf, pdf-viewer, pyqt6, pyqt6-gui
- Language: Python
- Homepage: http://www.chintellalaw.com
- Size: 14.6 KB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!