如何解决Python3.7.1中“没有名为'encodings'的模块”?

问题描述 投票:0回答:3

我尝试为我的项目(mywords_dict)启动uwsgi:

uwsgi --http :8000  -H /root/mywords_dict/env --chdir mywords_dict -w mywords_dict.wsgi

但收到以下错误:

Fatal Python error: initfsencoding: Unable to get the locale encoding
ModuleNotFoundError: No module named 'encodings'

我很困惑,如果我在进入虚拟环境后运行uwsgi,它可以很好地工作。“mywords_dict”的Python版本是3.7.1。我检查了 mywords_dic/env 中是否有编码包。我可以从那里成功运行 python。有人可以帮忙吗?

*** Starting uWSGI 2.0.18 (64bit) on [Fri Aug 30 00:15:16 2019] ***
compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-36) on 29 August 
2019 13:49:55
os: Linux-3.10.0-862.14.4.el7.x86_64 #1 SMP Wed Sep 26 15:12:11 UTC 2018
nodename: VM_0_17_centos
machine: x86_64
clock source: unix
pcre jit disabled
detected number of CPU cores: 1
current working directory: /root
detected binary path: /root/.pyenv/versions/3.7.1/bin/uwsgi
uWSGI running as root, you can use --uid/--gid/--chroot options
*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** 
chdir() to mywords_dict
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 3882
your memory page size is 4096 bytes
detected max file descriptor number: 100001
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uWSGI http bound on :8000 fd 4
spawned uWSGI http 1 (pid: 22645)
uwsgi socket 0 bound to TCP address 127.0.0.1:42301 (port auto-assigned) fd 3
uWSGI running as root, you can use --uid/--gid/--chroot options
*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** 
Python version: 3.7.1 (default, Nov 11 2018, 01:35:46)  [GCC 4.8.5 20150623 (Red Hat 4.8.5-28)]
Set PythonHome to /root/mywords_dict/env
**Fatal Python error: initfsencoding: Unable to get the locale encoding
ModuleNotFoundError: No module named 'encodings'**
python-3.x uwsgi
3个回答
2
投票

这是由于python虚拟环境路径错误造成的。它在您的

.ini
文件中的
home
变量下定义。

您需要做的就是分配给这个指向 venv 的 root 的变量路径。因此,如果您的 venv 路径是

/home/user/project/venv
,只需将此路径分配给
home
变量即可。确保 not 在 venv 路径中包含尾随的
/
(斜杠)(因为它稍后会连接到
/bin/python
,最终会得到双斜杠。

然后保存您的

.ini
文件并尝试再次启动 uWSGI。


0
投票

python 安装编码 没有名为“encodings”的模块


-4
投票

我遇到了同样的错误。 尝试以下步骤后已修复:

  1. 以管理员身份卸载 python(38)。在自定义安装过程中选中所有复选框,包括为所有用户安装和预编译标准库。
  2. 将 python38 降级到 37

我仍然不知道错误从何而来,哈哈。

© www.soinside.com 2019 - 2024. All rights reserved.