I’m having a fair share of problems with OpenSuse Tumbleweed and python atm.

Coming from Linux Mint and windows.

Installing python-packages with pip was pretty easy.

But I have trouble understanding how to install the following packages on TumbleWeed:

tkCalendar

yaml for Python(311)

When I try to use pip I get prompted to use zypper.

I am stuck at this point. Do I have to use something different than zypper? What is the correct way here?

Help very much appreciated and thank you in advance!

— Update —

**Thanks everyone for the help! **

I could succesfully create a virtual enviroment in my Visualstudio Code and installed the needed libraries. The next step for me would be to create a executable package.

  • lemmyreader@lemmy.ml
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    3 months ago

    An alternative is to use pipx : https://pipx.pypa.io/stable

    Overview: What is pipx?

    pipx is a tool to help you install and run end-user applications written in Python. It’s roughly similar to macOS’s brew, JavaScript’s npx, and Linux’s apt.

    It’s closely related to pip. In fact, it uses pip, but is focused on installing and managing Python packages that can be run from the command line directly as applications. How is it Different from pip?

    pip is a general-purpose package installer for both libraries and apps with no environment isolation. pipx is made specifically for application installation, as it adds isolation yet still makes the apps available in your shell: pipx creates an isolated environment for each application and its associated packages.

    pipx does not ship with pip, but installing it is often an important part of bootstrapping your system.

  • wyrmroot@programming.dev
    link
    fedilink
    arrow-up
    5
    ·
    3 months ago

    There’s already some good advice here, especially about virtual environments which might be the most important new concept to learn IMO. But just to let you know - it’s not just you. The most generous view of the Python package situation is that there are a lot of different ways to do it.

    • James_Ryan@discuss.tchncs.deOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      3 months ago

      Yea I finally can start my script with a virtual enviroment and tkcalendar installed.

      My switch from windows to linux is rough but I keep learning much new stuff.

  • taladar@sh.itjust.works
    link
    fedilink
    arrow-up
    2
    arrow-down
    3
    ·
    3 months ago

    Python packaging and stability is a total mess. It has gotten to the point where I just look for alternative tools when I find out something new I found is written in Python.