saksham-lussqvx / G.U.I.L.D

A program mainly based on creating GUI's in python without any hassle of creating GUI's directly with Tkinter.
GNU General Public License v3.0
9 stars 1 forks source link

Attribute error trying to run GUILD as described in your "Usage" instructions. #4

Open rleiman opened 2 years ago

rleiman commented 2 years ago

Greetings,

After installing GUILD using your instructions I get an attribute error while trying to run GUILD according to your instructions. I'm new to Linux and also Python so please go easy on me. Please let me know what else I need to install so I can run GUILD. I'm also including the output from Terminal so you can see the details.

Thanks in advance. I'm looking forward to using GUILD.

Truly, Emad

(base) emad-ud-deen@emadeva ~ % git clone https://github.com/saksham-lussqvx/G.U.I.L.D Cloning into 'G.U.I.L.D'... remote: Enumerating objects: 183, done. remote: Counting objects: 100% (183/183), done. remote: Compressing objects: 100% (180/180), done. remote: Total 183 (delta 78), reused 0 (delta 0), pack-reused 0 Receiving objects: 100% (183/183), 303.27 KiB | 3.49 MiB/s, done. Resolving deltas: 100% (78/78), done. (base) emad-ud-deen@emadeva ~ % cd G.U.I.L.D (base) emad-ud-deen@emadeva G.U.I.L.D % pip3 install -r requirements.txt Collecting requests==2.25.1 Downloading requests-2.25.1-py2.py3-none-any.whl (61 kB) |████████████████████████████████| 61 kB 982 kB/s Collecting pillow==8.2.0 Downloading Pillow-8.2.0-cp39-cp39-macosx_10_10_x86_64.whl (2.8 MB) |████████████████████████████████| 2.8 MB 1.4 MB/s Requirement already satisfied: chardet<5,>=3.0.2 in /Users/emad-ud-deen/opt/anaconda3/lib/python3.9/site-packages (from requests==2.25.1->-r requirements.txt (line 1)) (4.0.0) Collecting idna<3,>=2.5 Downloading idna-2.10-py2.py3-none-any.whl (58 kB) |████████████████████████████████| 58 kB 6.5 MB/s Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Users/emad-ud-deen/opt/anaconda3/lib/python3.9/site-packages (from requests==2.25.1->-r requirements.txt (line 1)) (1.26.7) Requirement already satisfied: certifi>=2017.4.17 in /Users/emad-ud-deen/opt/anaconda3/lib/python3.9/site-packages (from requests==2.25.1->-r requirements.txt (line 1)) (2021.10.8) Installing collected packages: idna, requests, pillow Attempting uninstall: idna Found existing installation: idna 3.2 Uninstalling idna-3.2: Successfully uninstalled idna-3.2 Attempting uninstall: requests Found existing installation: requests 2.26.0 Uninstalling requests-2.26.0: Successfully uninstalled requests-2.26.0 Attempting uninstall: pillow Found existing installation: Pillow 8.4.0 Uninstalling Pillow-8.4.0: Successfully uninstalled Pillow-8.4.0 ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. conda-repo-cli 1.0.4 requires pathlib, which is not installed. anaconda-project 0.10.1 requires ruamel-yaml, which is not installed. Successfully installed idna-2.10 pillow-8.2.0 requests-2.25.1 (base) emad-ud-deen@emadeva G.U.I.L.D % python3 GUILD.py Traceback (most recent call last): File "/Users/emad-ud-deen/G.U.I.L.D/GUILD.py", line 12, in <module> ctypes.windll.shcore.SetProcessDpiAwareness(1) AttributeError: module 'ctypes' has no attribute 'windll' (base) emad-ud-deen@emadeva G.U.I.L.D %

rleiman commented 2 years ago

I was able to get it to run and produce code by commenting out all lines referencing windll because I'm using a MacBook and I found out that windll was only for Windows.