Where is the PIP Store / Save Python 3 Modules / Packages in Windows 8?

I looked everywhere and cannot find where the packages are installed.

Also, are these packages from , modules, libraries, or just packages in terminology?

+5
source share
2 answers

From the docs

Python usually stores its library (and therefore the folder of your site) in the installation directory. So, if you installed Python in C: \ Python \, the default library will be in C: \ Python \ Lib \, and third-party modules should be stored in C: \ Python \ Lib \ site-packages.

+8
source

for the default location python 3.XC: \ Users \ username \ AppData \ Local \ Programs \ Python \ Python36 \ Lib \ site-packages

+6
source

Source: https://habr.com/ru/post/1201215/


All Articles