37
loading...
This website collects cookies to deliver better user experience
Start
menu and type anaconda
. You should see the anaconda prompt shortcut and click it to open.conda -h
conda --version
to check the current anaconda versionconda list
to see the list of packages installed in the current environmentconda env list
to see the list of environment (we'll create one later..) conda create -n sep_2021 python=3.8
(base) C:\Users\dendi>conda env list
# conda environments:
#
base * C:\Users\dendi\anaconda3
sep_2021 C:\Users\dendi\anaconda3\envs\sep_2021
activate sep_2021
base
to sep_2021
in the CMD. If you check the conda list
now, it will show this list:(sep_2021) C:\Users\dendi>conda list
# packages in environment at C:\Users\dendi\anaconda3\envs\sep_2021:
#
# Name Version Build Channel
ca-certificates 2021.7.5 haa95532_1
certifi 2021.5.30 py38haa95532_0
openssl 1.1.1l h2bbff1b_0
pip 21.0.1 py38haa95532_0
python 3.8.11 h6244533_1
setuptools 58.0.4 py38haa95532_0
sqlite 3.36.0 h2bbff1b_0
vc 14.2 h21ff451_1
vs2015_runtime 14.27.29016 h5e58377_2
wheel 0.37.0 pyhd3eb1b0_1
wincertstore 0.2 py38_0
numpy
, pandas
, matplotlib
, seaborn
, etc for our data science work. We can install those packages manually.pip install numpy
and then pip install pandas
, but you can directly install them all at once like this:pip install numpy pandas matplotlib seaborn