LoginSignup
0
1

More than 3 years have passed since last update.

Windows10でAnaconda python環境構築

Last updated at Posted at 2020-05-05

Windows10にpython環境を整える

今回はAnacondaをインストールしてpython3.7の開発環境を整えた。

Anaconda 環境のインストールは以下を参考に行った。
参考URL

1.仮想環境を作成

Anaconda Promptを起動して仮想環境を作成

$conda create --name DL python=3.7

2.仮想環境を有効化

$conda activate DL

3.必要なパッケージのインストール

とりあえずjupyterlab, numpy, matplotlib

$pip install jupyterlab

$pip install numpy

$pip install matplotlib

4.Jupyter Lab 起動

$jupyter lab

5.確認 Hello world

image.png

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