I'm trying to deploy a Python Flask app (for API endpoint) on CentOS for work, but every online guide I've followed isn't working for me!
python3 -m venv APIenv
The env was created successfully, but then trying to activate it:
source APIenv/bin/activate
Returns nothing, neither an error not is it activating it!
from what I understood, activating it should make the CLI look like this:
(venv) $ _
I'm also having another problem:
pip3 install firebase_admin
this worked and it was installed, but then running my app:
python3 app.py
Traceback (most recent call last): File "app.py", line 4, in import firebase_admin ModuleNotFoundError: No module named 'firebase_admin'
Every online guide I've followed is getting me stuck here, I really need to get this to work, what am I doing wrong?