After restarting the Baota panel, it prompts -ModuleNotFoundError: No module named 'geventwebsocket'

After restarting the Baota panel, it prompts -ModuleNotFoundError: No module named 'geventwebsocket'

background:

Because the server deployed the flask project and installed python3, the Baota panel reported an error when restarting

[Traceback (most recent call last):
File "/root/anaconda3/lib/python3.7/site-packages/gunicorn/util.py", line 135, in load_class
mod = import_module('.'.join(components))
File "/root/anaconda3/lib/python3.7/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 953, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 953, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 965, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'geventwebsocket'
]
------------------------------------------------------
Error: BT-Panel service startup failed.

Solution:

1. Install geventwebsocket in python3

I don't want to disassemble python3, nor do I want to delete the soft link of python3, so I found this method on the Internet

After a careful look, it seems that the geventwebsocket module is missing after upgrading python3.7

Then I tried to install this module using pip:

sudo pip3 install geventwebsocket

The result is still wrong

2. Continue to install gevent-websocket

sudo pip3 install gevent-websocket

After installation, there is still an error, prompting No module named 'paramiko'

3. Continue to install paramiko

 sudo pip3 install paramiko

4. Then restart the pagoda panel

sudo /etc/init.d/bt

success! ! !

Summarize

The above is what I introduced to you about the prompt after restarting the Baota panel - ModuleNotFoundError: No module named ''''geventwebsocket''''. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Solution to forgetting the password of the pagoda panel in Linux 3.X/4.x/5.x
  • How to install the Linux version of Baota Panel in a directory other than /www
  • Baota Linux Panel is a free Chinese Linux VPS host control panel suitable for fast website building
  • BT Baota Linux Server Management Assistant sets up VPS panel (installation and initial setup application)
  • Introduction to Baota Linux Panel 2.8.9 Stable Version

<<:  Solve the problem of MySQL 8.0 still prompting Access denied even though the input is correct

>>:  Sample code for implementing Alipay sandbox payment with Vue+SpringBoot

Recommend

JavaScript+html to implement front-end page sliding verification (2)

This article example shares the specific code of ...

Example of implementing GitHub's third-party authorization method in Vue

Table of contents Creating OAuth Apps Get the cod...

Installation steps of mysql under linux

1. Download the mysql tar file: https://dev.mysql...

How to monitor global variables in WeChat applet

I recently encountered a problem at work. There i...

Try Docker+Nginx to deploy single page application method

From development to deployment, do it yourself Wh...

CSS achieves the effect of two elements blending (sticky effect)

I remember that a few years ago, there was an int...

Page Refactoring Skills - Content

Enough of small talk <br />Based on the lar...

Vue interpretation of responsive principle source code analysis

Table of contents initialization initState() init...

Native js to realize bouncing ball

On a whim, I wrote a case study of a small ball b...

Detailed explanation of MySQL foreign key constraints

Official documentation: https://dev.mysql.com/doc...

Nginx configuration based on multiple domain names, ports, IP virtual hosts

1. Type introduction 1.1 Domain-based virtual hos...

Detailed explanation of Java calling ffmpeg to convert video format to flv

Detailed explanation of Java calling ffmpeg to co...

The connection between JavaScript constructors and prototypes

Table of contents 1. Constructors and prototypes ...