Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hmu332233/study.python
https://github.com/hmu332233/study.python
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hmu332233/study.python
- Owner: hmu332233
- License: mit
- Created: 2024-07-29T11:00:00.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-03T17:42:53.000Z (3 months ago)
- Last Synced: 2024-08-03T18:57:48.932Z (3 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```