0
0

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 1 year has passed since last update.

Windows10でPython環境構築など

Last updated at Posted at 2022-05-02

Windows10でのPython環境構築メモ

Python 3.8.5をダウンロードしてインストールします。
Windows10のスタートメニューからPowerShellを起動します。

まず、インストールができたかバージョン確認します。
ここで悩んだ事ですが、バージョンが何も表示されません。
これは良く分かりません。。とりあえずインストールは出来ている様です。

> python -V
Python ※何も表示されない

次に、jupyterをインストールします。
Windowsの場合は、「py -m」がないとインストールに失敗するようです。
※これは重要です。

> py -m pip install jupyter
~インストールログが色々でます~
> py -m pip install jupyterlab
~インストールログが色々でます~

インストールが出来たらjupyterlabを起動します。

> py -m jupyter lab
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?