Questions tagged [python-gui]

9 questions
4
votes
0 answers

nltk.download() logs out on OS X

I have a macbook running OS X 10.14.6, Python 3.7.3. When I try run interactive installer from NLTK python package, following the steps from: http://www.nltk.org/data.html in my terminal, after >> nltk.download() Instead of opening NLTK Downloader…
Mike K
  • 141
  • 1
3
votes
1 answer

how to fix message failed to extract packages during anaconda installation

I had installed anaconda. I have uninstalled through control panel and deleted the folder anaconda3 which was located on C:\users\HP\anaconda3. During fresh installation it throws an error saying failed to extract packages. I have tried cleaning up…
2
votes
1 answer

Sublime Text 2 - Assign a keyboard shortcut to a tool

Is there any possible way of assigning this tool to a keyboard shortcut? I'm using this tool because the builtin console in Sublime Text 2 doesn't support interactivity (entering inputs....etc).
1
vote
0 answers

How to install pkg in a non-standard location? (OS X)

In brief, my question is this: How can I install an OS X framework from a *.pkg file somewhere other than under /Library/Frameworks (or /System/Library/Frameworks)? Background I want to install a version of Python 2.7.3 that lives under…
kjo
  • 1,351
1
vote
1 answer

How do I associate .pyw files with Python in OSX?

A .pyw file is a Python script that launches an application with a user interface, without a console window. I want to be able to double click a .pyw file in Finder in OSX to open that application, but when I right click and select Open With->Other…
Hubro
  • 6,016
1
vote
1 answer

how to convert qt5-designer generate .ui file to .py file?

I tried to convert the .ui file which is generated using qt5 designer to .py but all those ways are different some are working some are not working.
0
votes
1 answer

Unable to open Python GUI application

I've installed WinPython 32-bit v3.3.5 in my PC and added C:\WinPython-32bit-3.3.5.0\python-3.3.5 to PATH. My python GUI app does not automatically associate with python and 'Open With' is not allowing me to choose python.exe. Running the script…
Naveen
  • 103
0
votes
1 answer

Atom download takes me to Github, doesn't download application

I'm attempting to install Atom on Mac, but when I click "download" on the atom.io site it takes me to Github. I have installed Atom on other devices, and I remember that this would normally just install the software. Does this also happen to anyone…
0
votes
1 answer

How to keep turtle coordinates constant across screen sizes

I have a program in Python that uses an image. The image is a little large, and because of that when it is opened by python, the entire image isn't visible on some computers (it fits vertically, but not horizontally). The program opens a window the…