Ubuntu 23.04로 업그레이드한 후 Python 설치가 더 이상 작동하지 않습니다.
"Running Poems"는 다음을 제공합니다.
➜ ~ poetry
Could not find platform independent libraries <prefix>
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Python path configuration:
PYTHONHOME = (not set)
PYTHONPATH = (not set)
program name = '/home/guillaume/.local/share/pypoetry/venv/bin/python'
isolated = 0
environment = 1
user site = 1
import site = 1
sys._base_executable = '/home/guillaume/.local/share/pypoetry/venv/bin/python'
sys.base_prefix = '/usr'
sys.base_exec_prefix = '/usr'
sys.platlibdir = 'lib'
sys.executable = '/home/guillaume/.local/share/pypoetry/venv/bin/python'
sys.prefix = '/usr'
sys.exec_prefix = '/usr'
sys.path = [
'/usr/lib/python310.zip',
'/usr/lib/python3.10',
'/usr/lib/lib-dynload',
]
Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
Python runtime state: core initialized
ModuleNotFoundError: No module named 'encodings'
Current thread 0x00007ff0fb4b1040 (most recent call first):
<no Python frame>
Python 자체를 실행하면 작동합니다.
➜ ~ python3
Python 3.11.2 (main, Mar 13 2023, 12:18:29) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
나는 시도했다:
- Python 재설치
- 설정 해제
PYTHONHOME
및PYTHONPATH
Python 설정을 어떻게 수정하나요?
답변1
나중에 참조할 수 있도록 내 질문에 답합니다.
나는 명백한 것을 간과했습니다. 이 질문은 시와 관련이 있습니다. Poetry를 다시 설치하면 문제가 해결되었습니다.