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?

condaで仮想環境を作る

0
Last updated at Posted at 2026-04-19

新しい環境を作る

conda create --name py36 python=3.6 pip numpy

環境一覧を示す

conda info --envs

環境に含まれているパッケージ一覧を書き出す

conda list --explicit > project_reqs.txt

上記のパッケージ一覧ファイルを使って新しい環境を作る

conda create --name project1 --file project_reqs.txt

特定の環境を削除する

conda remove -n project1 --all
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?