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

condaで新しい仮想環境を作りjupyterlabで利用できるようにするまでの備忘録

Posted at

仮想環境構築からjupyter labで利用できるようにする。毎回忘れるので備忘録として。

condaの新しい仮想環境を作る

(base) $ conda create -n new_env python=3.10
(base) $ conda activate new_env 
(new_env) $

ここら辺でテキトーに追加のパッケージのインストール

(new_env) $ pip install pandas

jupyter labに登録

(new_env) $ conda install notebook ipykernel -y
(new_env) $ ipython kernel install --user --name new_env
(new_env) $ jupyter kernelspec list
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?