Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can not install shutil library in Python 2.7

in the python 2.7, I find I can't install the shutil library through pip and easy_install, it said can't find it.How can I install it?

like image 732
陈硕冰 Avatar asked Sep 26 '16 22:09

陈硕冰


1 Answers

You likely cannot find it, because it is part of the standard library. shutil has been included in Python since before 2.3.

like image 181
RegularlyScheduledProgramming Avatar answered Sep 22 '22 21:09

RegularlyScheduledProgramming