Adding package to OpenSuSE Tumbleweed #1044
-
Apologies for a very basic question. How can I get dash-bootstrap-components package in OpenSuSe Tumbleweed with native python 3.11.9-2.1? I am working in OpenSuSe Tumbleweed with native python 3.11.9-2.1. The following dash packages are available and installed. python311-dash 2.16.1-1.1 There is no dash-bootstrap-components package that I can see. Native environment should not updated by pip or conda. Is there another way I can install the dash-bootstrap-components package in OpenSuSe Tumbleweed with native python 3.11.9-2.1? Thank you for any help or clue. Gato |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I'm afraid I'm not really familiar with openSUSE Tumbleweed. Why do you want to use the system / native Python? Is it not an option to create a virtual environment and install packages there? |
Beta Was this translation helpful? Give feedback.
-
Perhaps I will resort to that, but doesn't feel natural given the native environment. Probably explore not using dash-bootstrap-components first if it is not widely available.
Any thoughts about how to install package natively ?
Michael Hieb
O: +852.3112.3157
M: +852.9461.3111
***@***.***
Bahlam Core Limited
20th Floor, Central Tower
28 Queen’s Road, Central
Hong Kong
Sent by BlueMail for Android. Please excuse my brevity and any typos.
…On Jun 19, 2024, 21:34, at 21:34, Tom Begley ***@***.***> wrote:
I'm afraid I'm not really familiar with openSUSE Tumbleweed. Why do you
want to use the system / native Python? Is it not an option to create a
virtual environment and install packages there?
--
Reply to this email directly or view it on GitHub:
#1044 (comment)
You are receiving this because you authored the thread.
Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
Virtual environments in Python are standard practice, and generally preferable to using a system installation of Python, since the operating system itself uses it and you don't want to introduce dependency conflicts. You can use a package manager to ensure no conflicts arise between installed packages, or you can sidestep the whole issue by using a virtual environment for each of your projects which is much simpler and generally recommended.
dash-bootstrap-components is widely available through both PyPI and conda-forge. We don't have the resources to maintain additional installation options for the many different operating specific package managers out there. Sorry if this means you don'…