Author Topic: Python GUI for ppc64 (Fedora 32)  (Read 3082 times)

cchinicz

  • Full Member
  • ***
  • Posts: 131
  • Karma: +1/-0
    • View Profile
Python GUI for ppc64 (Fedora 32)
« on: October 07, 2020, 09:43:36 am »
Hi folks,

I've searched for know Python GUIs on Fedora repo but could not find any.

Anybody found a Python GUI for Fedora?

Thanks

tle

  • Sr. Member
  • ****
  • Posts: 425
  • Karma: +47/-0
    • View Profile
    • Trung's Personal Website
Re: Python GUI for ppc64 (Fedora 32)
« Reply #1 on: October 08, 2020, 05:53:35 am »
What is Python GUIs?
Faithful Linux enthusiast

My Raptor Blackbird

Borley

  • Full Member
  • ***
  • Posts: 165
  • Karma: +14/-0
    • View Profile
Re: Python GUI for ppc64 (Fedora 32)
« Reply #2 on: October 08, 2020, 06:41:46 pm »
The tk module? Or OP might be referring to the IDEs. Does Fedora not package idle-python for POWER?
Blackbird C1P9S01, CPU 02CY650, 2x 8GB 2666 RAM, 1024GB M.2 SSD, AMD RX 560X, 2U heatsink, 500W SFX PSU, Debian 11

cchinicz

  • Full Member
  • ***
  • Posts: 131
  • Karma: +1/-0
    • View Profile
Re: Python GUI for ppc64 (Fedora 32)
« Reply #3 on: October 09, 2020, 03:17:18 am »
What is Python GUIs?
Graphical User Interface. Thanks

cchinicz

  • Full Member
  • ***
  • Posts: 131
  • Karma: +1/-0
    • View Profile
Re: Python GUI for ppc64 (Fedora 32)
« Reply #4 on: October 09, 2020, 03:18:32 am »
The tk module? Or OP might be referring to the IDEs. Does Fedora not package idle-python for POWER?
Hi, I could not find idle-python in the Fedora ppc64el repo. Thanks

MPC7500

  • Hero Member
  • *****
  • Posts: 572
  • Karma: +40/-1
    • View Profile
    • Twitter
Re: Python GUI for ppc64 (Fedora 32)
« Reply #5 on: October 09, 2020, 10:23:22 am »
At least a RPM is available.

Graphical User Interface. Thanks

I think, tle knows what a GUI is ;D

cchinicz

  • Full Member
  • ***
  • Posts: 131
  • Karma: +1/-0
    • View Profile
Re: Python GUI for ppc64 (Fedora 32)
« Reply #6 on: October 12, 2020, 12:37:40 am »
At least a RPM is available.

Graphical User Interface. Thanks

I think, tle knows what a GUI is ;D

Hi, thanks for your reply and for referencing python-idle for ppc64el.

I've tried installing it but was missing dependencies (sudo rpm -U python-idle-2.7.18-2.2.ppc64le.rpm):
python-base = 2.7.18 is needed by python-idle-2.7.18-2.2.ppc64le
        python-tk is needed by python-idle-2.7.18-2.2.ppc64le

I could not find python-base for ppc64el although "Package python27-2.7.18-2.fc32.ppc64le is already installed." (I issued command sudo dnf install python2.7). Any ideas?

I did find python-tk but again ran into errors (udo rpm -U python-tk-2.7.18-2.ppc64le.rpm):
ile / from install of python-tk-2.7.18-2.ppc64le conflicts with file from package filesystem-3.14-2.fc32.ppc64le
        file /usr/lib from install of python-tk-2.7.18-2.ppc64le conflicts with file from package filesystem-3.14-2.fc32.ppc64le

Any ideas?

Thanks

tle

  • Sr. Member
  • ****
  • Posts: 425
  • Karma: +47/-0
    • View Profile
    • Trung's Personal Website
Re: Python GUI for ppc64 (Fedora 32)
« Reply #7 on: October 12, 2020, 02:44:28 am »
AFAIK python2 is retired in FC32, see https://fedoraproject.org/wiki/Changes/RetirePython2

Can you use `python3-idle` instead?
Faithful Linux enthusiast

My Raptor Blackbird

cchinicz

  • Full Member
  • ***
  • Posts: 131
  • Karma: +1/-0
    • View Profile
Re: Python GUI for ppc64 (Fedora 32)
« Reply #8 on: October 12, 2020, 03:02:38 am »
AFAIK python2 is retired in FC32, see https://fedoraproject.org/wiki/Changes/RetirePython2

Can you use `python3-idle` instead?

Hi,

Sure, I'd rather use 3 instead of Python2. I found python3 idle for x86 but not for ppc64el. Would you know where I can find it?

Thanks

MPC7500

  • Hero Member
  • *****
  • Posts: 572
  • Karma: +40/-1
    • View Profile
    • Twitter

cchinicz

  • Full Member
  • ***
  • Posts: 131
  • Karma: +1/-0
    • View Profile
Re: Python GUI for ppc64 (Fedora 32)
« Reply #10 on: October 12, 2020, 08:37:29 am »
https://rpmfind.net/linux/RPM/fedora/32/ppc64le/p/python3-3.8.2-2.fc32.ppc64le.html

Hi,

Thanks for sending the link. I've downloaded python3-3.8.2-2.fc32.ppc64le.rpm and installed it but I do not see python-idle. I'm a bit lost, what am I missing? Is it already installed? how do I start it?

Regards

MPC7500

  • Hero Member
  • *****
  • Posts: 572
  • Karma: +40/-1
    • View Profile
    • Twitter
Re: Python GUI for ppc64 (Fedora 32)
« Reply #11 on: October 12, 2020, 09:18:41 am »
On Fedora: dnf search python3-idle

Code: [Select]
python3-idle.ppc64le : A basic graphical development environment for Python

cchinicz

  • Full Member
  • ***
  • Posts: 131
  • Karma: +1/-0
    • View Profile
Re: Python GUI for ppc64 (Fedora 32)
« Reply #12 on: October 12, 2020, 09:51:38 am »
On Fedora: dnf search python3-idle

Code: [Select]
python3-idle.ppc64le : A basic graphical development environment for Python
Great! Now it's working.

Thanks