简体   繁体   中英

Unable to remove Python3.5

My machine has both python3.5 and python3.6 installed in the base environment. I had to remove python3.5 because of some reasons. I tried removing it by command - sudo apt-get remove python3.5 and sudo apt-get purge python3.5 .

It shows python3.5 is removed from the system. But when I run some program using python3.5 it is still running.

How to remove python3.5 completely from the machine?

You remove python3.5-minimal (as root) with:

apt remove python3.5-minimal

Review the output to ensure you are cool with dependencies also being removed before proceeding.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM