An open API service indexing awesome lists of open source software.

https://github.com/anuragkapur/udacity-into-to-machine-learning


https://github.com/anuragkapur/udacity-into-to-machine-learning

machine-learning python scikit-learn udacity-intro-to-machine-learning

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Introduction to Machine Learning (Udacity Course)
Notes, exercises, examples etc

# Setup and commands
## Conda environments
### Create env
```
conda create --name default37 python=3.7

#
# To activate this environment, use
#
# $ conda activate default37
#
# To deactivate an active environment, use
#
# $ conda deactivate

```
### List envs
```
conda env list
```
### Remove an environment
```
conda remove --name ak-default --all
```

## Handling packages in an environment
```
# Activate env to install into
conda activate default37

# List packages already installed in env
conda list

# Install a new package
conda install
```

## Install required packages
```
conda install python=3.7
conda install jupyter notebook
conda install nb_conda
```

# References
* [Conda - User Guide](https://docs.conda.io/projects/conda/en/latest/user-guide/index.html)