Read the statement by Michael Teeuw here.
CPU 100%. started too many instances of MM
-
I also noticed that pip and pip3 instances are hogging the CPU. That can’t be good either!
I restarted, so I’m not sure why pip is running.asking for help here! I’m a java dev, but now in management roles, so I don’t do this stuff as much. I can be a good contributor to the community, I just need a little help with getting off the ground, promise!
-
@capedbuffethero you can’t start w both npm AND pm2… one or the other
pm2 stop all
only one can use the port at a timepip sounds like a module
-
@sdetweil pip is the python package manager
-
@capedbuffethero I understand that. MagicMirror doesn’t use python.
-
@capedbuffethero
Hi there,Concerning pip you will need to find out what is calling it.
Normally it is not a daemon process, meaning something else is calling it.Can you get the following output:
ps aux | grep pip
And then using the lowest PID found:
pstree -a <PID>
You can find the lowest PID using:
ps aux | grep pid | awk '{print $2}' | sort -u
You can also check if there is a cronjob running that is calling pip:
crontab -l | egrep 'pip|python'
From there we can Google ourselves to a solution :-)
Best regards,
E.J.