관리 메뉴

웹개발자의 기지개

[Python] 가상환경 설정 및 패키지 설치 본문

python

[Python] 가상환경 설정 및 패키지 설치

http://portfolio.wonpaper.net 2021. 1. 8. 04:34

# 가상환경 python_basic 폴더에 지정한다.
F:\python -m venv python_basic

 

# 윈도우의 경우 Scripts 폴더 (맥의 경우는 Bin 폴더) 에서 가상환경 활성화시키기

 

F:\python_basic\Scripts>activate.bat

 

 

# 가상환경 비활성화시키기

(python_basic) F:\python_basic\Scripts>deactivate.bat

 

 

# 설치되어 있는 패키지 목록 확인하기

 

# 패키지 검색

(python_basic) F:\python_basic\Scripts>pip search simplejson

 

# 패키지 설치

(python_basic) F:\python_basic\Scripts>pip install simplejson

 

# 패키지 삭제

(python_basic) F:\python_basic\Scripts>pip uninstall simplejson

 

 

# 패키지 업그레이드

(python_basic) F:\python_basic\Scripts>pip install --upgrade simplejson

 

# 패키지 상세내역 보기

(python_basic) F:\python_basic\Scripts>pip show simplejson

 

 

1
2
3
4
5
6
import simplejson as json
 
test_dict = {'1'95'4'77'3'65'5'100'2'88}
 
# simplejson 실행
print(json.dumps(test_dict,sort_keys=True, indent=4 * ' '))
cs

Comments