conda env list
64bit 아나콘다 환경에서 32bit 아나콘다 가상환경 사용하기
1. set CONDA_FORCE_32BIT =1
# 32bit 환경 세팅
2. conda create -n py32 python=3.7 anaconda
# 아나콘다 32bit 가상화 설치 ( venv32 는 원하시는 이름으로 교체)
3. activate py32
# 가상환경 활성화
3 - 1. deactivate
# 가상환경 비활성화
3 - 2 conda env list
# 가상환경 이름 리스트 보기
4. conda update pyqt
#가상환경(activate py32) 실행상태에서 pyqt업데이트하기
출처: https://redapply.tistory.com/entry/64bit-아나콘다에서-32bit-파이썬-환경으로-사용하기
'python' 카테고리의 다른 글
This version of ChromeDriver only supports Chrome version (0) | 2020.08.17 |
---|---|
[python] Removing \xa0 from string (0) | 2019.08.27 |
[python] no support pyautogui.typewrite('UNICODE like 한글') (0) | 2019.08.18 |
[python] crawling method by partial ids (0) | 2019.08.15 |
[python] for using cv2 (0) | 2019.08.12 |