Anaconda
Anaconda#
Large platform used by science and data oriented pythonistas
Makes it faster and easier to set up the libraries you need for data science
It also lets teams replicate environments
Open the app Anaconda Navigator
Apps#
- QTConsole - A nicer console with help text and easier multi-line function editing
Environments#
Lets you graphically create environments
Projects#
For sharing projects
Learning#
Resources for learning datascience stuff
Community#
Community Resources
Conda#
- Anacondas
pip
-like tool - Can do everything the navigator can do
Create an environment#
conda create --name AnacondaDataScience numpy
Activate the environment
source activate AnacondaDataScience
Deactivate environment
source deactivate
Installing more packages
conda search bokeh
conda insall bokeh
MiniConda#
Package that comes with base bones Anaconda For servers or smaller machines