I am trying to install python-requests rpm on almalinux 8 os. But there is no package available for el8 for python-requests. There is an alternative available "python2-requests". Can I go ahead with installing python2-requets and make the relevant changes for required package in my rpm or are there any major differences between the 2.
Difference between linux packages python-requests and python2-requests
193 Views Asked by Vaibhav Singh At
1
There are 1 best solutions below
Related Questions in RPM
- RPM package signature verification in Ubuntu
- CentOS/RHEL download dependencies
- JFrog Xray SBOM: Why are there rpm packages with multiple versions that doesn't show up on my docker container?
- Stopping Jenkins from Incrementing Job Numbers When Restarting from a Stage
- building ruby 3.3.0 rpm on amazonlinux2023 is linking to hard coded directories
- RPM fails to install because of a directory conflict even though permissions are the same
- RPM Specfile wrong dependancy version resolved during dnf install
- Generated RPM has requirement on files it contains but doesn't provide them
- Testing installation and deployment of RPM
- RPM Require installs wrong dependency
- How does one tell yum to ignore a repo file with a parsing error?
- Install Multiple Tomcat9 Instance using RHEL RPM Package
- How to use "zypper info" with a specific version of a package
- How to add custom metadata using fpm for rpm/deb pacakges
- rpmbuild -bs fails for Illegal character
Related Questions in RHEL8
- Install docker on RHEL 8.8. Service does not start because of error : "Failed to initialize nft: Protocol not supported"
- How to deploy C# console app to RHEL host that has FIPS enabled
- AWK Command Output
- Ansible - install yum packages with preconfigured sudoers privileges
- Hadoop-Hive bigdata access using JDBC
- Jenkins initial setup not pregressing
- Error: OCI runtime error: runc: exec failed: container does not exist --> podman 4.4.1, RHEL 8.8
- Installing Openssl3.x on Rhel 8 running into warnings
- Installing traffic control on a docker container
- compiled & installed mono 6,12,0.199 on RHEL8, vbc complains, csc succeeds
- RPM Require installs wrong dependency
- C# Console application on Linux and Environment variable
- Nomad .net Core 8 service and Exit Code: 134, Signal: 6
- What happens to syslog if i lock /var/log/messages with fcntl. Will the logs be permanently lost or rsyslog will wait for fcntl to unlock messages?
- how to install sqlitebrowser on RHEL
Related Questions in ALMALINUX
- Python TimeoutError: [Errno 110] Connection timed out Googleapi
- Ansible xenserver_guest module not setting static IP on AlmaLinux 9 guest OS
- Launch agents via ssh option is not available on 2.444.0
- Resolving "Permission Denied" Error for NGINX Connecting to Node.js Application on SELinux-Enabled System:
- Creating LVM Partitions for Web App, Database, Unused Space, and Swap on Almalinux 9.3
- Running podman on a RedHat AL9 server issues
- Chronyd doesn't synchronize: No suitable source for synchronization
- move_uploaded_file not working in AlmaLinux 9.2
- Could not Connect to Mongodb Altas from Linux 8
- issues installing pyvmomi on AlmaLinux 8
- How do I `hostnamectl set-icon-name` via Ansible?
- Some elusive permissions problem running mongodb in docker on AlmaLinux mapping to an external database
- Phoronix Test Suit does not display sensor readings
- Linux Almalinux - While or Array
- Nginx how can I do Reverse Proxy to my .NET Core Web API?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
python-requestsis the source package (src.rpm).python2-requestsis the resulting package with python2 library. This is to differentiate from resulting package with python3 librarypython3-requests. If package is well designed then the samepython-requests.src.rpmproducespython2-requests.rpmfor el8 systems andpython3-requests.rpmfor el9 systems.