Cousera course of Neural Networks and Deep Learning work.
To run the differant packages with python we need to install conda. conda commands.
- NumPY
- Matplotlib
- scikit-learn
- SPYDER
Malithjkd profile: weights and bias
To see the conda environments in the pc. Conda cheat sheet
conda env listTo see the conda package list
conda list To create conda environment
conda create --name "env name" python=3.7You can use any name as "env name". (ex:ai37)
To activate the our environment
source activate "env name" After activation of environment, terminal indicate our envirnoment as
(ai37) pc@pc:~$To deactivate working environment
conda deactivateTo install packages to conda
install "packageName"install "conda"most of the time this way of installing works, if not please read more about install the package on conda environment.