Hi there, I have changed my server and now the aapanel is installed.
I am having problems running my python project.
I am getting the following errors:
probably another instance of uWSGI is running on the same address (0.0.0.0:1399).
bind(): Address already in use [core/socket.c line 769]
Python main interpreter initialized at 0x55e43d0f1850
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 166752 bytes (162 KB) for 2 cores
*** Operational MODE: threaded ***
Traceback (most recent call last):
File "/www/wwwroot/pg1313/main.py", line 3, in <module>
import app2
File "/www/wwwroot/pg1313/app2.py", line 17, in <module>
from seleniumbase import BaseCase
ModuleNotFoundError: No module named 'seleniumbase'
unable to load app 0 (mountpoint='') (callable not found or import error)
Traceback (most recent call last):
File "/www/wwwroot/pg1313/main.py", line 3, in <module>
import app2
File "/www/wwwroot/pg1313/app2.py", line 17, in <module>
from seleniumbase import BaseCase
ModuleNotFoundError: No module named 'seleniumbase'
unable to load app 0 (mountpoint='') (callable not found or import error)
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 391491)
spawned uWSGI worker 1 (pid: 391527, cores: 2)
spawned uWSGI http 1 (pid: 391528)
The python project can be started up and running. But it will throw these errors.
- Port, the port is whitelisted and setup in the uwsgi.ini
- Seleniumbase, i did install it into the module list, but it still throws me the same error.