Home >Backend Development >Python Tutorial >In which folder is the pycharm library file located?
PyCharm library files are stored in the following folder: Windows: %APPDATA%\JetBrains\PyCharm
\pluginsmacOS: ~/Library/Application Support/JetBrains/PyCharm /pluginsLinux:~/ .PyCharm /plugins
##PyCharm library file storage location
PyCharm library file is stored in the following file In folder:Windows:
<code>%APPDATA%\JetBrains\PyCharm<版本>\plugins</code>
macOS:
<code>~/Library/Application Support/JetBrains/PyCharm<版本>/plugins</code>
Linux:
<code>~/.PyCharm<版本>/plugins</code>where
is the PyCharm version being used.
Detailed description:
plugins subdirectory, each library has its own subdirectory. For example, the path to the Numpy library is:
<code>%/APPDATA%\JetBrains\PyCharm<版本>\plugins\python_numpy</code>
Other related information:
##PyCharm will also install third-party libraries into the project environment. These libraries are stored in the
The above is the detailed content of In which folder is the pycharm library file located?. For more information, please follow other related articles on the PHP Chinese website!