프로그래밍 언어/Python (2) 썸네일형 리스트형 파이썬 프로젝트 구조와 패키징 Python Project Structure and Packaging Typical project file structure . ├── env │ ├── bin │ ... │ └── pyvenv.cfg ├── .git │ ├── branches │ ├── config | ... ├── .gitignore ├── helloworld │ ├── __init.py__ │ └── helloworld.py ├── Makefile ├── MANIFEST.in ├── README.md ├── requirements.txt ├── setup.py └── tests ├── test_advanced.py └── test_basic.py Brief summary File / Folder Content env/ virtual.. Pyenv-version/virtual environment management List of viable packages venv for python3/virtualenv for python2 (obsolete): manages virtual environments for a specific Python version pyenv: manages multiple versions of Python pyenv-virtualenv: manages virtual environments for different versions of Python pipenv: not recommended because of the reported issue with slow locking (https://github.com/pypa/pipenv/issues/3827) venv sudo apt-get insta.. 이전 1 다음