LoginSignup
0
0

More than 1 year has passed since last update.

minicondaのインストールから使い方まで

Posted at

macでminicondaの環境作ったので備忘がてら残しておきます。
anacondaは商用利用有料と聞いたのでminicondaにしました。

インストール

以下のURLからダウンロードしてインストール
https://docs.conda.io/en/latest/miniconda.html

使い方

  • 仮想環境確認
conda env list
  • 仮想環境作成
conda create -n pythonenv python=3.10
  • 仮想環境有効化
conda activate pythonenv
  • 仮想環境無効化
conda deactivate 
  • 仮想環境削除
conda remove -n pythonenv --all
  • 仮想環境に入っているパッケージを確認
conda list
  • パッケージインストール
conda install django
  • パッケージアンインストール
conda remove django
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