KnowledgeBoat Logo

Computer Science

What is the importance of site-packages folder of Python installation ?

Python Libraries

3 Likes

Answer

The importance of site-packages folder of Python installation is that we can easily import a library and package using import command in Python only if it is attached to site-packages folder as this is the default place from where python interpreter imports Python library and packages.

Answered By

2 Likes


Related Questions