Skip to content

Instantly share code, notes, and snippets.

View marcoandre1's full-sized avatar
✌️
Enjoy your day!

Marco E marcoandre1

✌️
Enjoy your day!
View GitHub Profile
@marcoandre1
marcoandre1 / PyQt-installation.md
Last active August 11, 2023 12:55
Install PyQt with pip command on windows 10

About

Installation guide to PyQt4 and PyQt5 on windows 10. Works with Python 3.7.3 32-bit and Python 3.7.3 64-bit (tested)

Installing

  1. Verify that python is installed and runnning by typing python --version on the command line.
  2. Verify that you have not installed PyQt before pip list.
  3. pip install PyQt5 this will install PyQt5.
  4. pip install pyqt5-tools this will install the designer.exe in your Scripts folder.
@marcoandre1
marcoandre1 / Microsoft.PowerShell_profile.ps1
Last active September 25, 2020 22:10
Powershell configuration with Dracula theme (No admin access)
Import-Module PSReadLine
Set-Alias git hub
Set-PSReadLineOption -BellStyle None
Import-Module posh-git
Set-Location C:\users\<username>
# Dracula readline configuration. Requires version 2.0, if you have 1.2 convert to `Set-PSReadlineOption -TokenType`
Set-PSReadLineOption -TokenKind Command -ForegroundColor Green
Set-PSReadLineOption -TokenKind Parameter -ForegroundColor Gray
Set-PSReadLineOption -TokenKind Operator -ForegroundColor Magenta
Set-PSReadLineOption -TokenKind Variable -ForegroundColor White