티스토리 뷰
환경 만들기 (32비트, 파이썬 2.7)
set CONDA_FORCE_32BIT=1
conda create -n py27_32 python=2.7
동작
set CONDA_FORCE_32BIT=1
activate py27_32
환경만들기(64비트, 파이썬 3.5)
set CONDA_FORCE_32BIT=
conda create -n py35_64 python=3.5
set CONDA_FORCE_32BIT=
activate py35_64
레퍼런스 : Using multiple Python engines (32Bit/64bit and 2.7/3.5)
https://stackoverflow.com/questions/33709391/using-multiple-python-engines-32bit-64bit-and-2-7-3-5
Using multiple Python engines (32Bit/64bit and 2.7/3.5)
I would like to use Python for scientific applications and after some research decided that I will use Anaconda as it comes bundled with loads of packages and add new modules using conda install th...
stackoverflow.com