[GH-ISSUE #3312] Missing dependencies Python3, but python 36 installed GAME:Valheim #2288

Closed
opened 2026-02-27 03:02:00 +03:00 by kerem · 23 comments
Owner

Originally created by @molar131 on GitHub (Feb 28, 2021).
Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/3312

i was able to install the gameserver and it runs without issue for the most part. I had a friend that would spawn entire buildings with a mod and it would sometimes crash the server, cpu spike and server would go offline. i would restart it, no big deal., but if i was sleepting etc no one could play, so i setup a cronjob to run every 30 mins to run the monitor command. But whenever it needed to start gameserver, it complains that python3 is missing, prompting for a sudo password even though it is installed. i could extend the sudo timeout, in theory.

  • Distro: [Red Hat Enterprise Linux 8.3 (Ootpa)]
  • Game: [Valheim]
  • Command: [start/stop/monitor/restart]
  • LinuxGSM version: [v21.1.3]

Example of output from console

[vhserver]$ ./vhserver stop
Warning! Missing dependencies: python3
Information! Automatically installing missing dependencies.
Last metadata expiration check: 2:21:39 ago on Sun 28 Feb 2021 02:24:15 AM UTC.
Package python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 is already installed.
Dependencies resolved.
Nothing to do.

-If i do a "python3 --version", it informs me that it is python 3.6.8.
-i did an "alternatives --config python", and set the default to 3.6, same result when running any gameserver commands
-If i do an "rpm -q python3" it says it is not installed
-if i do an "rpm -q python36" it gives me the correct module, "python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64"

Any assistance is appreciated.

Originally created by @molar131 on GitHub (Feb 28, 2021). Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/3312 i was able to install the gameserver and it runs without issue for the most part. I had a friend that would spawn entire buildings with a mod and it would sometimes crash the server, cpu spike and server would go offline. i would restart it, no big deal., but if i was sleepting etc no one could play, so i setup a cronjob to run every 30 mins to run the monitor command. But whenever it needed to start gameserver, it complains that python3 is missing, prompting for a sudo password even though it is installed. i could extend the sudo timeout, in theory. * **Distro:** [Red Hat Enterprise Linux 8.3 (Ootpa)] * **Game:** [Valheim] * **Command:** [start/stop/monitor/restart] * **LinuxGSM version:** [v21.1.3] Example of output from console ``` [vhserver]$ ./vhserver stop Warning! Missing dependencies: python3 Information! Automatically installing missing dependencies. Last metadata expiration check: 2:21:39 ago on Sun 28 Feb 2021 02:24:15 AM UTC. Package python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 is already installed. Dependencies resolved. Nothing to do. ``` -If i do a "python3 --version", it informs me that it is python 3.6.8. -i did an "alternatives --config python", and set the default to 3.6, same result when running any gameserver commands -If i do an "rpm -q python3" it says it is not installed -if i do an "rpm -q python36" it gives me the correct module, "python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64" Any assistance is appreciated.
Author
Owner

@Xalorous commented on GitHub (Mar 3, 2021):

[vhserver@sv-valheim ~]$ cat /etc/centos-release
CentOS Linux release 7.9.2009 (Core)
[vhserver@sv-valheim ~]$ python --version
Python 2.7.5
[vhserver@sv-valheim ~]$ python3 --version
Python 3.6.8
[vhserver@sv-valheim ~]$ rpm -q python3
python3-3.6.8-18.el7.x86_64
[vhserver@sv-valheim ~]$ rpm -q python36
package python36 is not installed

My recommendation is yum reinstall python3. OR yum uninstall python3 followed by yum install python3, BUT this will likely uninstall a bunch of packages dependent upon python3.

You've run into a problem that is so pervasive in the python world that there are packages designed to let you bundle python environments and switch between them. Anaconda, pip, etc.

Another suggestion, if you're not using a dedicated server or vm to run your gameserver, I recommend you do so. If you have only one choice of machine, then definitely look into pip to create a separate virtual environment for your gameserver, running the python it needs.

<!-- gh-comment-id:789409347 --> @Xalorous commented on GitHub (Mar 3, 2021): [vhserver@sv-valheim ~]$ cat /etc/centos-release CentOS Linux release 7.9.2009 (Core) [vhserver@sv-valheim ~]$ python --version Python 2.7.5 [vhserver@sv-valheim ~]$ python3 --version Python 3.6.8 [vhserver@sv-valheim ~]$ rpm -q python3 python3-3.6.8-18.el7.x86_64 [vhserver@sv-valheim ~]$ rpm -q python36 package python36 is not installed My recommendation is `yum reinstall python3`. OR `yum uninstall python3` followed by `yum install python3`, BUT this will likely uninstall a bunch of packages dependent upon python3. You've run into a problem that is so pervasive in the python world that there are packages designed to let you bundle python environments and switch between them. Anaconda, pip, etc. Another suggestion, if you're not using a dedicated server or vm to run your gameserver, I recommend you do so. If you have only one choice of machine, then definitely look into pip to create a separate virtual environment for your gameserver, running the python it needs.
Author
Owner

@Xalorous commented on GitHub (Mar 3, 2021):

This is not a bug, this is a user support issue.

<!-- gh-comment-id:789409606 --> @Xalorous commented on GitHub (Mar 3, 2021): This is not a bug, this is a user support issue.
Author
Owner

@molar131 commented on GitHub (Mar 3, 2021):

[vhserver@sv-valheim ~]$ cat /etc/centos-release
CentOS Linux release 7.9.2009 (Core)
[vhserver@sv-valheim ~]$ python --version
Python 2.7.5
[vhserver@sv-valheim ~]$ python3 --version
Python 3.6.8
[vhserver@sv-valheim ~]$ rpm -q python3
python3-3.6.8-18.el7.x86_64
[vhserver@sv-valheim ~]$ rpm -q python36
package python36 is not installed

My recommendation is yum reinstall python3. OR yum uninstall python3 followed by yum install python3, BUT this will likely uninstall a bunch of packages dependent upon python3.

You've run into a problem that is so pervasive in the python world that there are packages designed to let you bundle python environments and switch between them. Anaconda, pip, etc.

Another suggestion, if you're not using a dedicated server or vm to run your gameserver, I recommend you do so. If you have only one choice of machine, then definitely look into pip to create a separate virtual environment for your gameserver, running the python it needs.

Thank you for the response. So just to set the table here is the output before running your recommendations, reminder this is RedHat, not CentOS

[vhserver@rhel-vhser ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux release 8.3 (Ootpa)
[vhserver@rhel-vhser ~]$ python --version
Python 3.6.8
[vhserver@rhel-vhser ~]$ python3 --version
Python 3.6.8
[vhserver@rhel-vhser ~]$ rpm -q python3
package python3 is not installed
[vhserver@rhel-vhser ~]$ rpm -q python36
python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64

I have performed all your yum recommendations, here is the output now

[vhserver@rhel-vhser ~]$ sudo yum reinstall python3
Last metadata expiration check: 1 day, 23:56:05 ago on Mon 01 Mar 2021 02:53:34 PM UTC.
Dependencies resolved.
=============================================================================================================================================================
 Package                   Architecture            Version                                                 Repository                                   Size
=============================================================================================================================================================
Reinstalling:
 python36                  x86_64                  3.6.8-2.module+el8.1.0+3334+5cb623d7                    rhel-8-appstream-rhui-rpms                   19 k

Transaction Summary
=============================================================================================================================================================

Total download size: 19 k
Installed size: 13 k
Is this ok [y/N]: y
Downloading Packages:
python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64.rpm                                                                     184 kB/s |  19 kB     00:00
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                         90 kB/s |  19 kB     00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                                                     1/1
  Reinstalling     : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64                                                                                1/2
  Running scriptlet: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64                                                                                1/2
  Cleanup          : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64                                                                                2/2
  Running scriptlet: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64                                                                                2/2
  Verifying        : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64                                                                                1/2
  Verifying        : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64                                                                                2/2

Reinstalled:
  python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64

Complete!
[vhserver@rhel-vhser ~]$ python --version
Python 3.6.8
[vhserver@rhel-vhser ~]$ python3 --version
Python 3.6.8
[vhserver@rhel-vhser ~]$ rpm -q python3
package python3 is not installed
[vhserver@rhel-vhser ~]$ rpm -q python36
python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64
<!-- gh-comment-id:789770696 --> @molar131 commented on GitHub (Mar 3, 2021): > ``` > [vhserver@sv-valheim ~]$ cat /etc/centos-release > CentOS Linux release 7.9.2009 (Core) > [vhserver@sv-valheim ~]$ python --version > Python 2.7.5 > [vhserver@sv-valheim ~]$ python3 --version > Python 3.6.8 > [vhserver@sv-valheim ~]$ rpm -q python3 > python3-3.6.8-18.el7.x86_64 > [vhserver@sv-valheim ~]$ rpm -q python36 > package python36 is not installed > ``` > > My recommendation is `yum reinstall python3`. OR `yum uninstall python3` followed by `yum install python3`, BUT this will likely uninstall a bunch of packages dependent upon python3. > > You've run into a problem that is so pervasive in the python world that there are packages designed to let you bundle python environments and switch between them. Anaconda, pip, etc. > > Another suggestion, if you're not using a dedicated server or vm to run your gameserver, I recommend you do so. If you have only one choice of machine, then definitely look into pip to create a separate virtual environment for your gameserver, running the python it needs. Thank you for the response. So just to set the table here is the output before running your recommendations, reminder this is RedHat, not CentOS ``` [vhserver@rhel-vhser ~]$ cat /etc/redhat-release Red Hat Enterprise Linux release 8.3 (Ootpa) [vhserver@rhel-vhser ~]$ python --version Python 3.6.8 [vhserver@rhel-vhser ~]$ python3 --version Python 3.6.8 [vhserver@rhel-vhser ~]$ rpm -q python3 package python3 is not installed [vhserver@rhel-vhser ~]$ rpm -q python36 python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 ``` I have performed all your yum recommendations, here is the output now ``` [vhserver@rhel-vhser ~]$ sudo yum reinstall python3 Last metadata expiration check: 1 day, 23:56:05 ago on Mon 01 Mar 2021 02:53:34 PM UTC. Dependencies resolved. ============================================================================================================================================================= Package Architecture Version Repository Size ============================================================================================================================================================= Reinstalling: python36 x86_64 3.6.8-2.module+el8.1.0+3334+5cb623d7 rhel-8-appstream-rhui-rpms 19 k Transaction Summary ============================================================================================================================================================= Total download size: 19 k Installed size: 13 k Is this ok [y/N]: y Downloading Packages: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64.rpm 184 kB/s | 19 kB 00:00 ------------------------------------------------------------------------------------------------------------------------------------------------------------- Total 90 kB/s | 19 kB 00:00 Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Reinstalling : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2 Running scriptlet: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2 Cleanup : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2 Running scriptlet: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2 Verifying : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2 Verifying : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2 Reinstalled: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 Complete! [vhserver@rhel-vhser ~]$ python --version Python 3.6.8 [vhserver@rhel-vhser ~]$ python3 --version Python 3.6.8 [vhserver@rhel-vhser ~]$ rpm -q python3 package python3 is not installed [vhserver@rhel-vhser ~]$ rpm -q python36 python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 ```
Author
Owner

@Xalorous commented on GitHub (Mar 3, 2021):

Centos is RHEL rebranded.

The discrepancy seems to be with rpm not seeing python3. This could have to
do with the difference between RHEL 7 and 8. I haven't checked how the
scripts determine whether python is there.

On Wed, Mar 3, 2021, 8:53 AM molar131 notifications@github.com wrote:

[vhserver@sv-valheim ~]$ cat /etc/centos-release
CentOS Linux release 7.9.2009 (Core)
[vhserver@sv-valheim ~]$ python --version
Python 2.7.5
[vhserver@sv-valheim ~]$ python3 --version
Python 3.6.8
[vhserver@sv-valheim ~]$ rpm -q python3
python3-3.6.8-18.el7.x86_64
[vhserver@sv-valheim ~]$ rpm -q python36
package python36 is not installed

My recommendation is yum reinstall python3. OR yum uninstall python3
followed by yum install python3, BUT this will likely uninstall a bunch
of packages dependent upon python3.

You've run into a problem that is so pervasive in the python world that
there are packages designed to let you bundle python environments and
switch between them. Anaconda, pip, etc.

Another suggestion, if you're not using a dedicated server or vm to run
your gameserver, I recommend you do so. If you have only one choice of
machine, then definitely look into pip to create a separate virtual
environment for your gameserver, running the python it needs.

Thank you for the response. So just to set the table here is the output
before running your recommendations, reminder this is RedHat, not CentOS

[vhserver@rhel-vhser ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux release 8.3 (Ootpa)
[vhserver@rhel-vhser ~]$ python --version
Python 3.6.8
[vhserver@rhel-vhser ~]$ python3 --version
Python 3.6.8
[vhserver@rhel-vhser ~]$ rpm -q python3
package python3 is not installed
[vhserver@rhel-vhser ~]$ rpm -q python36
python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64

I have performed all your yum recommendations, here is the output now

[vhserver@rhel-vhser ~]$ sudo yum reinstall python3
Last metadata expiration check: 1 day, 23:56:05 ago on Mon 01 Mar 2021 02:53:34 PM UTC.
Dependencies resolved.

Package Architecture Version Repository Size

Reinstalling:
python36 x86_64 3.6.8-2.module+el8.1.0+3334+5cb623d7 rhel-8-appstream-rhui-rpms 19 k

Transaction Summary

Total download size: 19 k
Installed size: 13 k
Is this ok [y/N]: y
Downloading Packages:
python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64.rpm 184 kB/s | 19 kB 00:00

Total 90 kB/s | 19 kB 00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Reinstalling : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2
Running scriptlet: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2
Cleanup : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2
Running scriptlet: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2
Verifying : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2
Verifying : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2

Reinstalled:
python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64

Complete!
[vhserver@rhel-vhser ~]$ python --version
Python 3.6.8
[vhserver@rhel-vhser ~]$ python3 --version
Python 3.6.8
[vhserver@rhel-vhser ~]$ rpm -q python3
package python3 is not installed
[vhserver@rhel-vhser ~]$ rpm -q python36
python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/GameServerManagers/LinuxGSM/issues/3312#issuecomment-789770696,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/ACZD774EA4BEXNG5QJKOJRDTBZEQDANCNFSM4YKV4KFA
.

<!-- gh-comment-id:789827516 --> @Xalorous commented on GitHub (Mar 3, 2021): Centos is RHEL rebranded. The discrepancy seems to be with rpm not seeing python3. This could have to do with the difference between RHEL 7 and 8. I haven't checked how the scripts determine whether python is there. On Wed, Mar 3, 2021, 8:53 AM molar131 <notifications@github.com> wrote: > [vhserver@sv-valheim ~]$ cat /etc/centos-release > CentOS Linux release 7.9.2009 (Core) > [vhserver@sv-valheim ~]$ python --version > Python 2.7.5 > [vhserver@sv-valheim ~]$ python3 --version > Python 3.6.8 > [vhserver@sv-valheim ~]$ rpm -q python3 > python3-3.6.8-18.el7.x86_64 > [vhserver@sv-valheim ~]$ rpm -q python36 > package python36 is not installed > > My recommendation is yum reinstall python3. OR yum uninstall python3 > followed by yum install python3, BUT this will likely uninstall a bunch > of packages dependent upon python3. > > You've run into a problem that is so pervasive in the python world that > there are packages designed to let you bundle python environments and > switch between them. Anaconda, pip, etc. > > Another suggestion, if you're not using a dedicated server or vm to run > your gameserver, I recommend you do so. If you have only one choice of > machine, then definitely look into pip to create a separate virtual > environment for your gameserver, running the python it needs. > > Thank you for the response. So just to set the table here is the output > before running your recommendations, reminder this is RedHat, not CentOS > > [vhserver@rhel-vhser ~]$ cat /etc/redhat-release > Red Hat Enterprise Linux release 8.3 (Ootpa) > [vhserver@rhel-vhser ~]$ python --version > Python 3.6.8 > [vhserver@rhel-vhser ~]$ python3 --version > Python 3.6.8 > [vhserver@rhel-vhser ~]$ rpm -q python3 > package python3 is not installed > [vhserver@rhel-vhser ~]$ rpm -q python36 > python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 > > > I have performed all your yum recommendations, here is the output now > > [vhserver@rhel-vhser ~]$ sudo yum reinstall python3 > Last metadata expiration check: 1 day, 23:56:05 ago on Mon 01 Mar 2021 02:53:34 PM UTC. > Dependencies resolved. > ============================================================================================================================================================= > Package Architecture Version Repository Size > ============================================================================================================================================================= > Reinstalling: > python36 x86_64 3.6.8-2.module+el8.1.0+3334+5cb623d7 rhel-8-appstream-rhui-rpms 19 k > > Transaction Summary > ============================================================================================================================================================= > > Total download size: 19 k > Installed size: 13 k > Is this ok [y/N]: y > Downloading Packages: > python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64.rpm 184 kB/s | 19 kB 00:00 > ------------------------------------------------------------------------------------------------------------------------------------------------------------- > Total 90 kB/s | 19 kB 00:00 > Running transaction check > Transaction check succeeded. > Running transaction test > Transaction test succeeded. > Running transaction > Preparing : 1/1 > Reinstalling : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2 > Running scriptlet: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2 > Cleanup : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2 > Running scriptlet: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2 > Verifying : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 1/2 > Verifying : python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 2/2 > > Reinstalled: > python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 > > Complete! > [vhserver@rhel-vhser ~]$ python --version > Python 3.6.8 > [vhserver@rhel-vhser ~]$ python3 --version > Python 3.6.8 > [vhserver@rhel-vhser ~]$ rpm -q python3 > package python3 is not installed > [vhserver@rhel-vhser ~]$ rpm -q python36 > python36-3.6.8-2.module+el8.1.0+3334+5cb623d7.x86_64 > > — > You are receiving this because you commented. > Reply to this email directly, view it on GitHub > <https://github.com/GameServerManagers/LinuxGSM/issues/3312#issuecomment-789770696>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/ACZD774EA4BEXNG5QJKOJRDTBZEQDANCNFSM4YKV4KFA> > . >
Author
Owner

@molar131 commented on GitHub (Mar 3, 2021):

I am aware that CentOS is RHEL rebranded. I originally was showing how RHEL 8 is dealing with RPM, which i had pointed out in my original post.

<!-- gh-comment-id:789834183 --> @molar131 commented on GitHub (Mar 3, 2021): I am aware that CentOS is RHEL rebranded. I originally was showing how RHEL 8 is dealing with RPM, which i had pointed out in my original post.
Author
Owner

@h3o66 commented on GitHub (Mar 7, 2021):

Could you attach here a debug log for me to check ?

Howto:
enabled debug mode
./vhserver dev

execute the command that has a problem (in your case where the dependency is checked)
./vhserver stop

upload the log dev-debug.log

disable dev debug:
./vhserver dev

<!-- gh-comment-id:792280420 --> @h3o66 commented on GitHub (Mar 7, 2021): Could you attach here a debug log for me to check ? Howto: enabled debug mode `./vhserver dev` execute the command that has a problem (in your case where the dependency is checked) `./vhserver stop` upload the log `dev-debug.log` disable dev debug: `./vhserver dev`
Author
Owner

@Cenarkion commented on GitHub (Jun 12, 2021):

For what its worth, I ran into the same minor issue, running redhat 8.4.
${distroversion} in info_distro.sh is pulling "8.4" as the distroversion from os-release

VERSION_ID="8.4"

Thus the further deps check in check_deps.sh is not picking up the suitable package array. A dirty edit to check for distroversion 8.4 in the fn_deps_biuld_redhat function resolves the issue of course, for the short term

elif [ "${distroversion}" == "8.4" ]; then array_deps_required=( epel-release curl wget util-linux python36 file tar gzip bzip2 unzip binutils bc jq tmux nmap-ncat cpio )

<!-- gh-comment-id:860083881 --> @Cenarkion commented on GitHub (Jun 12, 2021): For what its worth, I ran into the same minor issue, running redhat 8.4. ${distroversion} in info_distro.sh is pulling "8.4" as the distroversion from os-release `VERSION_ID="8.4"` Thus the further deps check in check_deps.sh is not picking up the suitable package array. A dirty edit to check for distroversion 8.4 in the fn_deps_biuld_redhat function resolves the issue of course, for the short term `elif [ "${distroversion}" == "8.4" ]; then array_deps_required=( epel-release curl wget util-linux python36 file tar gzip bzip2 unzip binutils bc jq tmux nmap-ncat cpio )`
Author
Owner

@dgibbs64 commented on GitHub (Jun 12, 2021):

Dependency checking needs a refactor to be able to manage these sorts of issues

<!-- gh-comment-id:860084660 --> @dgibbs64 commented on GitHub (Jun 12, 2021): Dependency checking needs a refactor to be able to manage these sorts of issues
Author
Owner

@litecactus commented on GitHub (Jul 16, 2021):

Having the same issue on Rocky 8.4

Warning! Missing dependencies: python3 on ./vhserver st
[vhserver@localhost ~]$ python3 --version Python 3.6.8

<!-- gh-comment-id:881417306 --> @litecactus commented on GitHub (Jul 16, 2021): Having the same issue on Rocky 8.4 `Warning! Missing dependencies: python3` on `./vhserver st` `[vhserver@localhost ~]$ python3 --version Python 3.6.8`
Author
Owner

@k3mic commented on GitHub (Aug 6, 2021):

Not sure this is just for Valheim. Having same issue with Rocky Linux 8.4 and Minecraft.

<!-- gh-comment-id:893974238 --> @k3mic commented on GitHub (Aug 6, 2021): Not sure this is just for Valheim. Having same issue with Rocky Linux 8.4 and Minecraft.
Author
Owner

@Livius90 commented on GitHub (Aug 23, 2021):

In all of Red Hat 8 based distributions like CentOs 8, Oracle Linux 8, Rocky Linux 8 etc... the python3 dependency checking is buggy for all games. rpm -q python3 terminal command in sourcecode can not show the real information about the installed python3 package because this is an incomplete name.

[csgo_user@server csgo_linuxgsm]$ rpm -qa | grep python3*
python3-libdnf-0.55.0-7.0.1.el8.x86_64
python3-dnf-plugins-core-4.0.18-4.el8.noarch
python3-setuptools-39.2.0-6.el8.noarch
python3-firewall-0.8.2-7.0.1.el8_4.noarch
platform-python-3.6.8-37.0.1.el8.x86_64
python3-decorator-4.2.1-2.el8.noarch
python3-linux-procfs-0.6.3-1.el8.noarch
python3-pyyaml-3.12-12.el8.x86_64
python3-pyparsing-2.1.10-7.el8.noarch
python3-libselinux-2.9-5.el8.x86_64
python3-pip-wheel-9.0.3-19.el8.noarch
python3-hawkey-0.55.0-7.0.1.el8.x86_64
python3-libstoragemgmt-clibs-1.8.7-1.el8.x86_64
platform-python-setuptools-39.2.0-6.el8.noarch
python3-six-1.11.0-8.el8.noarch
python3-gobject-base-3.28.3-2.el8.x86_64
python3-gpg-1.13.1-7.el8.x86_64
python3-configobj-5.0.6-11.el8.noarch
python3-pyudev-0.21.0-7.el8.noarch
python3-urwid-1.3.1-4.el8.x86_64
python3-schedutils-0.6-6.el8.x86_64
python3-libcomps-0.1.11-5.el8.x86_64
python3-configshell-1.1.28-1.0.1.el8.noarch
python3-slip-0.6.4-11.el8.noarch
python3-setools-4.3.0-2.el8.x86_64
python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64
python3-policycoreutils-2.9-14.0.1.el8.noarch
platform-python-pip-9.0.3-19.el8.noarch
python3-pip-9.0.3-19.el8.noarch
python3-perf-4.18.0-305.12.1.el8_4.x86_64
python3-rpm-4.14.3-14.el8_4.x86_64
python3-setuptools-wheel-39.2.0-6.el8.noarch
python3-libstoragemgmt-1.8.7-1.el8.noarch
python3-dnf-4.4.2-11.el8.noarch
python3-libsemanage-2.9-6.el8.x86_64
policycoreutils-python-utils-2.9-14.0.1.el8.noarch
python36-3.6.8-2.0.1.module+el8.4.0+20103+1849b5f9.x86_64
python3-sssdconfig-2.4.0-9.0.1.el8_4.2.noarch
python3-libs-3.6.8-37.0.1.el8.x86_64
python3-dbus-1.2.4-15.el8.x86_64
python3-dateutil-2.6.1-6.el8.noarch
python3-kmod-0.9-20.el8.x86_64
python3-nftables-0.9.3-18.el8.x86_64
python3-slip-dbus-0.6.4-11.el8.noarch
python3-libxml2-2.9.7-9.0.2.el8_4.2.x86_64

For me only the following command can give a correct output but it is usable only if we are looking for python3.6 specificly, it is not good for universal solution. So please improve the rpm -q dependency checking, it is incorrect in all Red Hat Linuxes.

[csgo_user@server csgo_linuxgsm]$ rpm -q python36
python36-3.6.8-2.0.1.module+el8.4.0+20103+1849b5f9.x86_64
<!-- gh-comment-id:904024165 --> @Livius90 commented on GitHub (Aug 23, 2021): In all of Red Hat 8 based distributions like CentOs 8, Oracle Linux 8, Rocky Linux 8 etc... the `python3` dependency checking is buggy for all games. `rpm -q python3` terminal command in [sourcecode](https://github.com/GameServerManagers/LinuxGSM/blob/d6ea6383f9d1c3aa8811a3cd48c1389177f06cd6/lgsm/functions/check_deps.sh#L168) can not show the real information about the installed `python3` package because this is an incomplete name. ```console [csgo_user@server csgo_linuxgsm]$ rpm -qa | grep python3* python3-libdnf-0.55.0-7.0.1.el8.x86_64 python3-dnf-plugins-core-4.0.18-4.el8.noarch python3-setuptools-39.2.0-6.el8.noarch python3-firewall-0.8.2-7.0.1.el8_4.noarch platform-python-3.6.8-37.0.1.el8.x86_64 python3-decorator-4.2.1-2.el8.noarch python3-linux-procfs-0.6.3-1.el8.noarch python3-pyyaml-3.12-12.el8.x86_64 python3-pyparsing-2.1.10-7.el8.noarch python3-libselinux-2.9-5.el8.x86_64 python3-pip-wheel-9.0.3-19.el8.noarch python3-hawkey-0.55.0-7.0.1.el8.x86_64 python3-libstoragemgmt-clibs-1.8.7-1.el8.x86_64 platform-python-setuptools-39.2.0-6.el8.noarch python3-six-1.11.0-8.el8.noarch python3-gobject-base-3.28.3-2.el8.x86_64 python3-gpg-1.13.1-7.el8.x86_64 python3-configobj-5.0.6-11.el8.noarch python3-pyudev-0.21.0-7.el8.noarch python3-urwid-1.3.1-4.el8.x86_64 python3-schedutils-0.6-6.el8.x86_64 python3-libcomps-0.1.11-5.el8.x86_64 python3-configshell-1.1.28-1.0.1.el8.noarch python3-slip-0.6.4-11.el8.noarch python3-setools-4.3.0-2.el8.x86_64 python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64 python3-policycoreutils-2.9-14.0.1.el8.noarch platform-python-pip-9.0.3-19.el8.noarch python3-pip-9.0.3-19.el8.noarch python3-perf-4.18.0-305.12.1.el8_4.x86_64 python3-rpm-4.14.3-14.el8_4.x86_64 python3-setuptools-wheel-39.2.0-6.el8.noarch python3-libstoragemgmt-1.8.7-1.el8.noarch python3-dnf-4.4.2-11.el8.noarch python3-libsemanage-2.9-6.el8.x86_64 policycoreutils-python-utils-2.9-14.0.1.el8.noarch python36-3.6.8-2.0.1.module+el8.4.0+20103+1849b5f9.x86_64 python3-sssdconfig-2.4.0-9.0.1.el8_4.2.noarch python3-libs-3.6.8-37.0.1.el8.x86_64 python3-dbus-1.2.4-15.el8.x86_64 python3-dateutil-2.6.1-6.el8.noarch python3-kmod-0.9-20.el8.x86_64 python3-nftables-0.9.3-18.el8.x86_64 python3-slip-dbus-0.6.4-11.el8.noarch python3-libxml2-2.9.7-9.0.2.el8_4.2.x86_64 ``` For me only the following command can give a correct output but it is usable only if we are looking for `python3.6` specificly, it is not good for universal solution. So please improve the `rpm -q` dependency checking, it is incorrect in all Red Hat Linuxes. ```console [csgo_user@server csgo_linuxgsm]$ rpm -q python36 python36-3.6.8-2.0.1.module+el8.4.0+20103+1849b5f9.x86_64 ```
Author
Owner

@litecactus commented on GitHub (Aug 23, 2021):

I don't really know anything about these things but can you just wham in a wildcard * in the dependency? lol

<!-- gh-comment-id:904068316 --> @litecactus commented on GitHub (Aug 23, 2021): I don't really know anything about these things but can you just wham in a wildcard * in the dependency? lol
Author
Owner

@k3mic commented on GitHub (Aug 23, 2021):

I don't really know anything about these things but can you just wham in a wildcard * in the dependency? lol

Probably possible, but there's likely more reliable checks out there. I would think something like which python3 might be a bit more reliable than querying the RPM DB. In theory you could install python with something like pyenv and it wont add anything to RPM DB. The which command should still find it if it's in your $PATH. Might even be safe to use on all distros, not just EL8, assuming which is installed...

Pyenv (ignore broken prompt, lol):

 ~  which python3
~/.pyenv/shims/python3
 ~  python3 -V
Python 3.7.11
 ~ 

EL8:

[root@server ~]# which python3 > /dev/null 2>&1 && echo python3-good || echo python3-bad
python3-good
[root@server ~]# cat /etc/redhat-release
Rocky Linux release 8.4 (Green Obsidian)
[root@server ~]#

Debian 10:

root@server:~# which python3 > /dev/null 2>&1 && echo python3-good || echo python3-bad
python3-good
root@server:~# cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
root@server:~#
<!-- gh-comment-id:904107742 --> @k3mic commented on GitHub (Aug 23, 2021): > I don't really know anything about these things but can you just wham in a wildcard * in the dependency? lol Probably possible, but there's likely more reliable checks out there. I would think something like `which python3` might be a bit more reliable than querying the RPM DB. In theory you could install python with something like pyenv and it wont add anything to RPM DB. The `which` command should still find it if it's in your `$PATH`. Might even be safe to use on all distros, not just EL8, assuming `which` is installed... Pyenv (ignore broken prompt, lol): ``` ~  which python3 ~/.pyenv/shims/python3 ~  python3 -V Python 3.7.11 ~  ``` EL8: ``` [root@server ~]# which python3 > /dev/null 2>&1 && echo python3-good || echo python3-bad python3-good [root@server ~]# cat /etc/redhat-release Rocky Linux release 8.4 (Green Obsidian) [root@server ~]# ``` Debian 10: ``` root@server:~# which python3 > /dev/null 2>&1 && echo python3-good || echo python3-bad python3-good root@server:~# cat /etc/os-release PRETTY_NAME="Debian GNU/Linux 10 (buster)" NAME="Debian GNU/Linux" VERSION_ID="10" VERSION="10 (buster)" VERSION_CODENAME=buster ID=debian HOME_URL="https://www.debian.org/" SUPPORT_URL="https://www.debian.org/support" BUG_REPORT_URL="https://bugs.debian.org/" root@server:~# ```
Author
Owner

@Livius90 commented on GitHub (Aug 24, 2021):

I don't really know anything about these things but can you just wham in a wildcard * in the dependency? lol

Unfortunately wildcard * is not working in this command.

[csgo_user@server csgo_linuxgsm]$ rpm -q python3*
package python3* is not installed
<!-- gh-comment-id:905006114 --> @Livius90 commented on GitHub (Aug 24, 2021): > I don't really know anything about these things but can you just wham in a wildcard * in the dependency? lol Unfortunately wildcard * is not working in this command. ```console [csgo_user@server csgo_linuxgsm]$ rpm -q python3* package python3* is not installed ```
Author
Owner

@Xalorous commented on GitHub (Aug 26, 2021):

‘rpm -q python’ should list all packages starting with ‘python’

‘rpm -qa | grep python3’ should list all packages with ‘python3’ in the
name.

If the problem is that python3 is installed but named /bin/python and the
installation requires an executable named python3, why not symlimk it? I
mean test if python3 is installed, then whether python3 is in the path. If
installed and not in the path as ‘python’, create the symlink.

On Tue, Aug 24, 2021 at 5:02 PM Livius @.***> wrote:

I don't really know anything about these things but can you just wham in a
wildcard * in the dependency? lol

Unfortunately wildcard * is not working in this command.

@.*** csgo_linuxgsm]$ rpm -q python3package python3 is not installed


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/GameServerManagers/LinuxGSM/issues/3312#issuecomment-905006114,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/ACZD7772WNB2ENQCYGIM7YLT6QJGRANCNFSM4YKV4KFA
.
Triage notifications on the go with GitHub Mobile for iOS
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
or Android
https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email
.

<!-- gh-comment-id:906103800 --> @Xalorous commented on GitHub (Aug 26, 2021): ‘rpm -q python’ should list all packages starting with ‘python’ ‘rpm -qa | grep python3’ should list all packages with ‘python3’ in the name. If the problem is that python3 is installed but named /bin/python and the installation requires an executable named python3, why not symlimk it? I mean test if python3 is installed, then whether python3 is in the path. If installed and not in the path as ‘python’, create the symlink. On Tue, Aug 24, 2021 at 5:02 PM Livius ***@***.***> wrote: > I don't really know anything about these things but can you just wham in a > wildcard * in the dependency? lol > > Unfortunately wildcard * is not working in this command. > > ***@***.*** csgo_linuxgsm]$ rpm -q python3*package python3* is not installed > > — > You are receiving this because you commented. > Reply to this email directly, view it on GitHub > <https://github.com/GameServerManagers/LinuxGSM/issues/3312#issuecomment-905006114>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/ACZD7772WNB2ENQCYGIM7YLT6QJGRANCNFSM4YKV4KFA> > . > Triage notifications on the go with GitHub Mobile for iOS > <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> > or Android > <https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email> > . >
Author
Owner

@Livius90 commented on GitHub (Aug 29, 2021):

‘rpm -q python’ should list all packages starting with ‘python’

It is not show all package starting with python, it is show only one package which name is python, this is the problem. If you have an installed python 3.6 you need to query python36 if you have python 3.9 you need to use python39 and so on, python3 is an incomplete name to get the correct package cheking. The which python3 should be a good dependency cheking but it will be useful only for python checking. Any other package will need other solutions.

<!-- gh-comment-id:907794744 --> @Livius90 commented on GitHub (Aug 29, 2021): > ‘rpm -q python’ should list all packages starting with ‘python’ It is not show all package starting with python, it is show only one package which name is python, this is the problem. If you have an installed python 3.6 you need to query python36 if you have python 3.9 you need to use python39 and so on, python3 is an incomplete name to get the correct package cheking. The `which python3` should be a good dependency cheking but it will be useful only for python checking. Any other package will need other solutions.
Author
Owner

@Xalorous commented on GitHub (Sep 6, 2021):

"It is not show all package starting with python, it is show only one
package which name is python, this is the problem."

On rpm based systems, 'rpm -q foo' shows all installed packages with names
starting with the string python. If you are looking for foo2 and it is
installed, it will show. This is the way the rpm utility works. Since
python36 is now the default python in RHEL 7 (and thus CentOS and Oracle --
and scientific linux if it's still around), if you look at the full name of
the installed python package, what version does it show?

If GSM needs python3, and only python is showing on 'which', cd to the
folder holding 'python' and type 'sudo ln -s python python3'. Then
anything that calls python3 will get python (which is python 3.6
underneath).

On Sun, Aug 29, 2021 at 8:49 AM Livius @.***> wrote:

‘rpm -q python’ should list all packages starting with ‘python’

It is not show all package starting with python, it is show only one
package which name is python, this is the problem. If you have an installed
python 3.6 you need to query python36 if you have python 3.9 you need to
use python39 and so on, python3 is an incomplite name to get the correct
package cheking. the which python3 should be a good dependency cheking
but it will be useful only for python checking. Any other package will need
other solutions.


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/GameServerManagers/LinuxGSM/issues/3312#issuecomment-907794744,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/ACZD77ZOGLLFRBWG5XIYQSDT7I3HTANCNFSM4YKV4KFA
.
Triage notifications on the go with GitHub Mobile for iOS
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
or Android
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

<!-- gh-comment-id:913367392 --> @Xalorous commented on GitHub (Sep 6, 2021): > > "It is not show all package starting with python, it is show only one > package which name is python, this is the problem." On rpm based systems, 'rpm -q foo' shows all installed packages with names starting with the string python. If you are looking for foo2 and it is installed, it will show. This is the way the rpm utility works. Since python36 is now the default python in RHEL 7 (and thus CentOS and Oracle -- and scientific linux if it's still around), if you look at the full name of the installed python package, what version does it show? If GSM needs python3, and only python is showing on 'which', cd to the folder holding 'python' and type 'sudo ln -s python python3'. Then anything that calls python3 will get python (which is python 3.6 underneath). On Sun, Aug 29, 2021 at 8:49 AM Livius ***@***.***> wrote: > ‘rpm -q python’ should list all packages starting with ‘python’ > > It is not show all package starting with python, it is show only one > package which name is python, this is the problem. If you have an installed > python 3.6 you need to query python36 if you have python 3.9 you need to > use python39 and so on, python3 is an incomplite name to get the correct > package cheking. the which python3 should be a good dependency cheking > but it will be useful only for python checking. Any other package will need > other solutions. > > — > You are receiving this because you commented. > Reply to this email directly, view it on GitHub > <https://github.com/GameServerManagers/LinuxGSM/issues/3312#issuecomment-907794744>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/ACZD77ZOGLLFRBWG5XIYQSDT7I3HTANCNFSM4YKV4KFA> > . > Triage notifications on the go with GitHub Mobile for iOS > <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> > or Android > <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>. > >
Author
Owner

@Livius90 commented on GitHub (Sep 6, 2021):

You are wrong, 'rpm -q foo' show the full name matching only, not the starting. So, 'rpm -q python' or 'rpm -q python3' shows nothing in RHEL 8 (maybe in RHEL 7 too). Only the correct syntax is 'rpm -q python36' or 'rpm -q python38' ... etc.

'rpm -q python' was good cheking syntax for only python 2.x, in the past, maybe.

CentOS8 python36
Package name is python36, need to use it in rpm -q or it can not show. And the default exectuable is python3 in RHEL 8 not python, so which python3 is a correct cheking

Python executable need to create after the installation with some extra command by manually if need.

sudo alternatives --set python /usr/bin/python3
<!-- gh-comment-id:913487312 --> @Livius90 commented on GitHub (Sep 6, 2021): You are wrong, 'rpm -q foo' show the full name matching only, not the starting. So, 'rpm -q python' or 'rpm -q python3' shows nothing in RHEL 8 (maybe in RHEL 7 too). Only the correct syntax is 'rpm -q python36' or 'rpm -q python38' ... etc. 'rpm -q python' was good cheking syntax for only python 2.x, in the past, maybe. CentOS8 [python36](https://centos.pkgs.org/8/centos-appstream-x86_64/python36-3.6.8-2.module_el8.4.0+790+083e3d81.x86_64.rpm.html) Package name is python36, need to use it in rpm -q or it can not show. And the default exectuable is python3 in RHEL 8 not python, so `which python3` is a correct cheking Python executable need to create after the installation with some extra command by manually if need. ```console sudo alternatives --set python /usr/bin/python3 ```
Author
Owner

@dgibbs64 commented on GitHub (Sep 23, 2021):

python36 will be the standard package on next release. Hopfully this will resolve it

<!-- gh-comment-id:926085554 --> @dgibbs64 commented on GitHub (Sep 23, 2021): python36 will be the standard package on next release. Hopfully this will resolve it
Author
Owner

@Xalorous commented on GitHub (Sep 23, 2021):

Part of the issue seems to simply be the name is unconventional, or the
convention changed. In the past python was python. Then they did python2
for all sub-versions. Now instead of python3, we get python36.

Perhaps checking for python36, and creating a symlink python3 pointing to
python36?

On Thu, Sep 23, 2021, 2:16 PM Daniel Gibbs @.***> wrote:

python36 will be the standard package on next release. Hopfully this will
resolve it


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/GameServerManagers/LinuxGSM/issues/3312#issuecomment-926085554,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/ACZD772DWHNFMXWOBJNRX43UDN4IHANCNFSM4YKV4KFA
.
Triage notifications on the go with GitHub Mobile for iOS
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
or Android
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

<!-- gh-comment-id:926173709 --> @Xalorous commented on GitHub (Sep 23, 2021): Part of the issue seems to simply be the name is unconventional, or the convention changed. In the past python was python. Then they did python2 for all sub-versions. Now instead of python3, we get python36. Perhaps checking for python36, and creating a symlink python3 pointing to python36? On Thu, Sep 23, 2021, 2:16 PM Daniel Gibbs ***@***.***> wrote: > python36 will be the standard package on next release. Hopfully this will > resolve it > > — > You are receiving this because you commented. > Reply to this email directly, view it on GitHub > <https://github.com/GameServerManagers/LinuxGSM/issues/3312#issuecomment-926085554>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/ACZD772DWHNFMXWOBJNRX43UDN4IHANCNFSM4YKV4KFA> > . > Triage notifications on the go with GitHub Mobile for iOS > <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> > or Android > <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>. > >
Author
Owner

@dgibbs64 commented on GitHub (Sep 23, 2021):

linuxgsm checks against the package name so if the package name is python36 it will use that. So it should be OK in next release :)

<!-- gh-comment-id:926178422 --> @dgibbs64 commented on GitHub (Sep 23, 2021): linuxgsm checks against the package name so if the package name is python36 it will use that. So it should be OK in next release :)
Author
Owner

@xadips commented on GitHub (Oct 20, 2021):

Still getting the same issue, on CentOS 7
[ WARN ] Starting csgoserver: Missing dependencies: python36[sudo] password for csgoserver:
Information! Automatically installing missing dependencies.
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile

  • base: centos.uni-sofia.bg
  • centos-sclo-rh: centos.uni-sofia.bg
  • centos-sclo-sclo: centos.uni-sofia.bg
  • epel: mirror.vpsnet.com
  • extras: centos.uni-sofia.bg
  • updates: centos.uni-sofia.bg
    Package python36-3.6.8-2.el7.ius.x86_64 is obsoleted by python3-3.6.8-18.el7.x86_64 which is already installed
    Nothing to do
<!-- gh-comment-id:947705736 --> @xadips commented on GitHub (Oct 20, 2021): Still getting the same issue, on CentOS 7 [ WARN ] Starting csgoserver: Missing dependencies: python36[sudo] password for csgoserver: Information! Automatically installing missing dependencies. Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: centos.uni-sofia.bg * centos-sclo-rh: centos.uni-sofia.bg * centos-sclo-sclo: centos.uni-sofia.bg * epel: mirror.vpsnet.com * extras: centos.uni-sofia.bg * updates: centos.uni-sofia.bg Package python36-3.6.8-2.el7.ius.x86_64 is obsoleted by python3-3.6.8-18.el7.x86_64 which is already installed Nothing to do
Author
Owner

@github-actions[bot] commented on GitHub (Oct 21, 2022):

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

<!-- gh-comment-id:1286293177 --> @github-actions[bot] commented on GitHub (Oct 21, 2022): This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sign in to join this conversation.
No labels
Atomic
Epic
cannot reproduce
command: backup
command: console
command: debug
command: details
command: fast-dl
command: install
command: mods
command: monitor
command: post-details
command: restart
command: send
command: start
command: stop
command: update
command: update-lgsm
command: validate
command: wipe
distro: AlmaLinux
distro: Arch Linux
distro: CentOS
distro: Debian
distro: Fedora
distro: RedHat
distro: Rocky Linux
distro: Ubuntu
distro: openSUSE
engine: goldsrc
engine: source
game: 7 Days to Die
game: ARMA 3
game: Ark: Survival Evolved
game: Assetto Corsa
game: Avorion
game: BATTALION: Legacy
game: Barotrauma
game: Battalion 1944
game: Battlefield 1942
game: Black Mesa: Deathmatch
game: Blade Symphony
game: Call of Duty 2
game: Call of Duty 4
game: Call of Duty: United Offensive
game: Counter-Strike 1.6
game: Counter-Strike 2
game: Counter-Strike: Global Offensive
game: Counter-Strike: Source
game: Day of Infamy
game: Dayz
game: Death Match Classic
game: Don't Starve Together
game: ET: Legacy
game: Eco
game: Factorio
game: Factorio
game: Garry's Mod
game: Half-Life
game: Hurtword
game: Insurgecy
game: Insurgecy
game: Insurgency: Sandstorm
game: Just Cause 3
game: Killing Floor
game: Killing Floor 2
game: Left 4 Dead 2
game: Minecraft
game: Minecraft Bedrock
game: Mordhau
game: Multi Theft Auto
game: Mumble
game: Natural Selection 2
game: No More Room in Hell
game: Pavlov VR
game: Post Scriptum
game: Project Zomboid
game: Quake 3
game: QuakeWorld
game: Red Orchestra: Ostfront 41-45
game: Return to Castle Wolfenstein
game: Rising World
game: Rust
game: San Andreas Multiplayer
game: Satisfactory
game: Soldat
game: Soldier of Fortune 2
game: Squad
game: Squad 44
game: Starbound
game: Stationeers
game: Sven Co-op
game: Team Fortress 2
game: Teamspeak 3
game: Teeworlds
game: Terraria
game: The Front
game: Unreal Tournament 2004
game: Unreal Tournament 3
game: Unreal Tournament 99
game: Unturned
game: Valheim
game: Wurm Unlimited
game: Zombie Master Reborn
game: label missing
good first issue
help wanted
info: alerts
info: dependency
info: docker
info: docs
info: email
info: query
info: steamcmd
info: systemd
info: tmux
info: website
info: website
needs more info
outcome: duplicate
outcome: issue resolved
outcome: issue resolved
outcome: issue unresolved
outcome: pr accepted
outcome: pr rejected
outcome: unconfirmed
outcome: wontfix
outcome: wrong forum
potential-duplicate
priority
pull-request
type: bug
type: feature
type: feature
type: feature request
type: game server request
type: refactor
waiting response
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/LinuxGSM#2288
No description provided.