Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- Data Engineering
- query
- typescript
- ubuntu
- devtools
- windows
- package.json
- framework
- kibana
- 7.7.1
- elasticsearch
- venv
- Crontab
- json
- OPCUA
- airflow
- CSV
- DSL
- configure
- filebeat
- logstash
- path.data
- ELK
- KoA
- grok
- PYTHON
- elastic
- node.js
- dense_vector
- Tutorial
Archives
- Today
- Total
Gibbs Kim's playground
[Data Engineering-9] Python venv install specific version (Windows) 본문
Tech 기록지/Data Engineering
[Data Engineering-9] Python venv install specific version (Windows)
Lio Grande 2024. 8. 5. 10:35# Test Environment
## OS: Windows 11 Pro
## Python version
# 3.12
# 3.10
## Python Install spot: Microsoft Store
기존 웹서핑에서 언급하는 방식으로 venv를 통한 특정 파이썬 버전이 설치되지 않아 다른 방법으로 수행한 내용을 기록한다.
1. 타겟 python 폴더로 이동 (target: 3.10)
$ cd C:\Users\testUser\AppData\Local\Microsoft\WindowApps\PythonSoftwareFoundation.Python.3.10_qef5dg
# {user_name} == testUser
# {id_pattern} == qef5dg
2. venv 커맨드 실행하여 특정 버전의 virtual 환경 설정
$ Python3.10 -m vevn C:\test_venv
# Target location for venv dir == C:\test_venv
3. 가상환경 실행 및 종료
# 가상환경 실행
$ cd C:\test_user\Scripts
$ activate
# 가상환경 종료
(test_user) $ deactivate
'Tech 기록지 > Data Engineering' 카테고리의 다른 글
[Data Engineering-8] Airflow DAGs test with python class (0) | 2024.07.30 |
---|---|
[Data Engineering-7] Ubuntu (Linux) Symbolic Link (0) | 2024.07.30 |
[Data Engineering-6] 윈도우 검색 findstr (0) | 2024.07.26 |
[Data Engineering-5] Airflow 설치 및 실행 테스트 (with postgreSQL) (1) | 2024.07.26 |
[Data Engineering-4] Ubuntu 고정(static) IP 설정하기 (with Netplan) (0) | 2024.07.15 |