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を再インストールすると問題が解決しました。