Python

No Image

In a conda environment you want to confirm package list

conda list

That’s it!

Python

No Image

If you want to create environment named “myenv”

conda create myenv

That’s it!

Python

No Image

If you want to activate “myenv”

conda activate myenv

That’s it!

Python

No Image

with pip

pip install scikit-learn

in anaconda

conda install scikit-learn

with pipenv

pipenv install scik ...