Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Q] 의존성 패키지 버전 mismatch #13

Closed
Yaminyam opened this issue Dec 12, 2024 · 4 comments
Closed

[Q] 의존성 패키지 버전 mismatch #13

Yaminyam opened this issue Dec 12, 2024 · 4 comments
Labels
question Further information is requested

Comments

@Yaminyam
Copy link

Component

NAVIX 9.5

Describe the bug

CleanShot 2024-12-12 at 16 09 05@2x
CleanShot 2024-12-12 at 16 09 28@2x
릴리즈노트에 Python 3.12 버전 업그레이드와 관련된 내용이 있습니다.
하지만 방금 9.5버전 설치후 python 버전을 확인해보니 기본 3.9 버전이 설치되어있습니다.

Expected behavior

No response

To Reproduce

No response

Screenshots / Live demo link

No response

Environment

No response

Additional context

No response

@Yaminyam Yaminyam added bug Something isn't working new This bug report has recently been entered labels Dec 12, 2024
@NAVIXsup1
Copy link
Collaborator

시스템 기본 버전은 3.9 가 맞습니다.

3.11 이나 3.12 가 필요한 경우 패키지 이름은
python3.12 로 시작하는 별도 패키지를 설치하셔야 합니다.

$ sudo dnf search python3.12
Last metadata expiration check: 3:35:27 ago on Thu 12 Dec 2024 10:05:16 PM KST.
======================================================= Name Exactly Matched: python3.12 ========================================================
python3.12.i686 : Version 3.12 of the Python interpreter
python3.12.x86_64 : Version 3.12 of the Python interpreter
====================================================== Name & Summary Matched: python3.12 =======================================================
python3.12-PyMySQL+rsa.noarch : Metapackage for python3.12-PyMySQL: rsa extras
=========================================================== Name Matched: python3.12 ============================================================
python3.12-Cython.x86_64 : Language for writing Python extension modules
python3.12-PyMySQL.noarch : Pure-Python MySQL client library
python3.12-cffi.x86_64 : Foreign Function Interface for Python to call C code
python3.12-charset-normalizer.noarch : The Real First Universal Charset Detector
python3.12-cryptography.x86_64 : PyCA's cryptography library
python3.12-debug.i686 : Debug version of the Python runtime
python3.12-debug.x86_64 : Debug version of the Python runtime
python3.12-devel.i686 : Libraries and header files needed for Python development
python3.12-devel.x86_64 : Libraries and header files needed for Python development
python3.12-flit-core.noarch : PEP 517 build backend for packages using Flit
python3.12-idle.i686 : A basic graphical development environment for Python
python3.12-idle.x86_64 : A basic graphical development environment for Python
python3.12-idna.noarch : Internationalized Domain Names in Applications (IDNA)
python3.12-iniconfig.noarch : Brain-dead simple parsing of ini files
python3.12-libs.i686 : Python runtime libraries
python3.12-libs.x86_64 : Python runtime libraries
python3.12-lxml.x86_64 : XML processing library combining libxml2/libxslt with the ElementTree API
python3.12-mod_wsgi.x86_64 : A WSGI interface for Python web applications in Apache
python3.12-numpy.x86_64 : A fast multidimensional array facility for Python
python3.12-numpy-f2py.x86_64 : f2py for numpy
python3.12-packaging.noarch : Core utilities for Python packages
python3.12-pip.noarch : A tool for installing and managing Python packages
python3.12-pip-wheel.noarch : The pip wheel
python3.12-pluggy.noarch : The plugin manager stripped of pytest specific details
python3.12-ply.noarch : Python Lex-Yacc
python3.12-psycopg2.x86_64 : A PostgreSQL database adapter for Python
python3.12-psycopg2-debug.x86_64 : A PostgreSQL database adapter for Python 3.12 (debug build)
python3.12-psycopg2-tests.x86_64 : A testsuite for A PostgreSQL database adapter for Python 3.12
python3.12-pybind11.x86_64 : Seamless operability between C++11 and Python
python3.12-pybind11-devel.i686 : Development headers for pybind11
python3.12-pybind11-devel.x86_64 : Development headers for pybind11
python3.12-pycparser.noarch : C parser and AST generator written in Python
python3.12-pytest.noarch : Simple powerful testing with Python
python3.12-pyyaml.x86_64 : YAML parser and emitter for Python
python3.12-requests.noarch : HTTP library, written in Python, for human beings
python3.12-rpm.x86_64 : Python 3.12 bindings for apps which will manipulate RPM packages
python3.12-scipy.x86_64 : Scientific Tools for Python
python3.12-scipy-tests.x86_64 : Scientific Tools for Python - test files
python3.12-semantic_version.noarch : Library implementing the 'SemVer' scheme
python3.12-setuptools.noarch : Easily build and distribute Python packages
python3.12-setuptools-rust.noarch : Setuptools Rust extension plugin
python3.12-setuptools-wheel.noarch : The setuptools wheel
python3.12-test.i686 : The self-test suite for the main python3 package
python3.12-test.x86_64 : The self-test suite for the main python3 package
python3.12-tkinter.i686 : A GUI toolkit for Python
python3.12-tkinter.x86_64 : A GUI toolkit for Python
python3.12-urllib3.noarch : HTTP library with thread-safe connection pooling, file post, and more
python3.12-uwsgidecorators.x86_64 : Python 3.12 decorators providing access to the uwsgi API
python3.12-wheel.noarch : Built-package format for Python
python3.12-wheel-wheel.noarch : The Python wheel module packaged as a wheel

@Yaminyam
Copy link
Author

@NAVIXsup1 확인감사합니다. 그렇다면 해당 릴리즈업데이트 내용은 navix용 패키지 list에 python 3.12 버전 지원이 추가 됐다고 보면 되는걸까요?

@NAVIXsup1
Copy link
Collaborator

네 시스템 툴에서 사용하는 python은 기본 3.9 이고 패키지 네임은 python3 입니다.
python3.11 또는 python3.12 란 이름으로 별도 패키지가 존재하고.
사용자 필요에 따라서 설치하시면 됩니다.

@NAVIXsup1
Copy link
Collaborator

아래 간단 예제를 참조 하시기 바랍니다.
https://navix.navercorp.com/docs/howtos/hwoto-python/

@songhee1030 songhee1030 changed the title [BUG] 의존성 패키지 버전 mismatch [Q] 의존성 패키지 버전 mismatch Dec 12, 2024
@songhee1030 songhee1030 added question Further information is requested and removed bug Something isn't working new This bug report has recently been entered labels Dec 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

3 participants