1 Respuesta
- Más nuevo
- Más votos
- Más comentarios
3
Hi,
In linux, to run any command in background put an & at the end of the command and also consider using nohup.
As an example, please see below:
nohup python3 -m uvicorn api:app &
You should now be able to see the process running in the output of the below command:
ps -ef
Hope this helps!
Thanks, Rama
Contenido relevante
- OFICIAL DE AWSActualizada hace 3 años
- OFICIAL DE AWSActualizada hace 8 meses