1
1

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.

Windows10 anaconda環境にpython2.7環境を追加する

Last updated at Posted at 2019-10-17

@ozaki_physicsさんの【初心者向け】Anacondaで仮想環境を作ってみる を参考にanacondaにpython2.7の環境を追加する。

まずは、Anaconda promptを開く。
Snaconda promptはWindows10のスタートメニューのAnacondaの中にある。
スタートメニューをスクリーンキャプチャーしようとしてもできない・・・。

# conda create -n python2.7

と入力すると以下のように表示される。

(base) C:\(省略)>conda create -n python2.7
Collecting package metadata (current_repodata.json): done
Solving environment: done
## Package Plan ##
  environment location: C:\ProgramData\Anaconda3\envs\python2.7
Proceed ([y]/n)? n
CondaSystemExit: Exiting.
(base) C:\(省略)>conda create -n py27 python=2.7
Collecting package metadata (current_repodata.json): done
Solving environment: done
## Package Plan ##
  environment location: C:\ProgramData\Anaconda3\envs\py27
 added / updated specs:
    - python=2.7
The following packages will be downloaded:
    package                    |            build
    ---------------------------|-----------------
    certifi-2019.9.11          |           py27_0         155 KB
    pip-19.2.3                 |           py27_0         1.9 MB
    python-2.7.16              |       hcb6e200_0        15.3 MB
    setuptools-41.4.0          |           py27_0         684 KB
    sqlite-3.30.0              |       h0c8e037_0         898 KB
    vc-9                       |       h7299396_1           3 KB
    vs2008_runtime-9.00.30729.1|       hfaea7d5_1         500 KB
    wheel-0.33.6               |           py27_0          58 KB
    wincertstore-0.2           |   py27hf04cefb_0          14 KB
    ------------------------------------------------------------
                                           Total:        19.5 MB
The following NEW packages will be INSTALLED:
  certifi            pkgs/main/win-64::certifi-2019.9.11-py27_0
  pip                pkgs/main/win-64::pip-19.2.3-py27_0
  python             pkgs/main/win-64::python-2.7.16-hcb6e200_0
  setuptools         pkgs/main/win-64::setuptools-41.4.0-py27_0
  sqlite             pkgs/main/win-64::sqlite-3.30.0-h0c8e037_0
  vc                 pkgs/main/win-64::vc-9-h7299396_1
  vs2008_runtime     pkgs/main/win-64::vs2008_runtime-9.00.30729.1-hfaea7d5_1
  wheel              pkgs/main/win-64::wheel-0.33.6-py27_0
  wincertstore       pkgs/main/win-64::wincertstore-0.2-py27hf04cefb_0
Proceed ([y]/n)? 

yを入力してリターンると以下のようにpython2.7.16やpip,wheelなどがインストールされた。

Downloading and Extracting Packages
vc-9                 | 3 KB      | ############################################################################ | 100%
pip-19.2.3           | 1.9 MB    | ############################################################################ | 100%
certifi-2019.9.11    | 155 KB    | ############################################################################ | 100%
wincertstore-0.2     | 14 KB     | ############################################################################ | 100%
sqlite-3.30.0        | 898 KB    | ############################################################################ | 100%
setuptools-41.4.0    | 684 KB    | ############################################################################ | 100%
vs2008_runtime-9.00. | 500 KB    | ############################################################################ | 100%
wheel-0.33.6         | 58 KB     | ############################################################################ | 100%
python-2.7.16        | 15.3 MB   | ############################################################################ | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use
#
#     $ conda activate py27
#
# To deactivate an active environment, use
#
#     $ conda deactivate

環境が追加されたか確認するため

conda info -e

と入力すると

# conda environments:
#
base                  *  C:\ProgramData\Anaconda3
py27                     C:\ProgramData\Anaconda3\envs\py27

とbaseの下にpy27という環境が追加されたことがわかる。

このページを作るのに@shizumaさんのQiita Markdown 書き方 まとめを参考にしました。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?