18
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Anacondaで32bitのPython環境を作るときに必要な設定

Last updated at Posted at 2018-06-05

背景

Pythonで作ったアプリケーションをexe化するのにcx_Freezeを使っています。
開発は64bitのPythonを使っているのですが、アプリケーションが動作するPCが32bit環境だと、また1からPythonの環境を作り直してexe化する必要があります。
32bitのPython環境を構築する際に必要な手順を備忘録としてメモします。

前提条件

  • OS : Windows10
  • Shell : nyagos
  • conda version : 4.5.4

32bit環境構築手順

  1. 環境変数CONDA_FORCE_32bitを1に設定
  2. AnacondaでPythonの仮想環境を作成。このときの環境名は32bitであることを明示しておくとわかりやすい
  3. 現環境を作成した32bit Pythonに設定
  4. Pythonを起動してMSC v.1900 32 bit (Intel)が見えたらインストールできている
  5. 環境変数CONDA_FORCE_32bitをもとに戻す
$ set CONDA_FORCE_32BIT=1
$ conda create -n py36_32bit python=3.6.5
$ source activate py36_32bit
$ python
Python 3.6.5 |Anaconda, Inc.| (default, Mar 29 2018, 13:23:52) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
$ set CONDA_FORCE_32BIT=

ここの記事を何回も見ているので、自分なりに手順をまとめてみました。

18
23
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?