아나콘다 콘솔에서
32BIT 설정
set CONDA_FORCE_32BIT=1
conda create -n py36_32 python=3.6.5
activate py36_32
해제하는법
deactivate py36_32
set CONDA_FORCE_32BIT=
conda create -n py36_64 python=3.6.5
activate py36_64
conda info 명령어로 확인가능
PyCharm에서
Settings > Project Interpreter에서 만들어진 py36_32로 설정해서 사용 가능
댓글