Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hmu332233/study.python


https://github.com/hmu332233/study.python

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

README

        

# study.python

```
# 가상 환경 생성
python -m venv myenv

# 가상 환경 활성화
# Windows:
myenv\Scripts\activate
# macOS 및 Linux:
source myenv/bin/activate

# 필요한 패키지 설치 (예시)
pip install package_name

# 프로젝트 실행
python hello_world.py

# 가상 환경 비활성화
deactivate
```