Virutal Environment를 활용하여 독립적인 환경을 구축하고, 해당 환경 내에서 Package를 구성할 것.
Packages
Defintion
Self-contained collections of Python modules, libraries, and other resources that provide reusable functionality for your projects
Modularity
Packages break down complex code into manageable units, making projects easier to organize and maintain.
Collaboration
Package facilitate code sharing and collaboration, saving time and preventing the need to "reinvent the wheel"
PyPI - The Python Package Index
The Primary repository for third-party Python packages. It offers a vast collection of open-source tools and libraries
Download py pip(python package installer)
Virtual Enviornment
Create isolated Python environments to manage different sets of packages for different projects. This can prevent conflicts arising from incompatible package versions between projects
반응형
'인공지능 > Python' 카테고리의 다른 글
Pytest basic (2) | 2024.10.09 |
---|