LoginSignup
1
0

More than 5 years have passed since last update.

Stackless Pythonの少し前のバージョン(3.6.8)をWindowsにインストール

Posted at

Stackless Pythonのインストール(Windows)でハマったのでメモ。

Stackless Python単体のWindows用インストーラでは、なぜかtkinterが入らない。そのためMiniconda3で行く。しかしMiniconda3で普通にconda install -c stackless stacklessしてconda create -n stackless36 python=3.6しても、なぜかノーマルのCPythonが仮想環境に入ってしまう。
そこでAnacondaのレポジトリ(x86, x64)からStackless Pythonのパッケージをダウンロードして、

conda install -c stackless stackless
conda create -n stackless36 python=3.6
activate stackless36
cd envs\stackless36
conda install C:\path\to\downloaded-package.tar.bz2

これで無事にimport tkinterが通った。

1
0
0

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
1
0