Conda install -c anaconda pandas Like the same method, try it yourself to install the remaining modules. Install Keras. Now, everything looks good so you can start keras installation using the below command − conda install -c anaconda keras Launch spyder. Finally, launch spyder in your conda terminal using the below command − spyder. Dec 26, 2016 While I previously made a video on how to manually install anaconda, the way below utilizes bash scripts which are a faster way to install a Python. Never use your mac python again, and install all python modules trough the fink/macport and enjoy it taking care dependencies for you. Installing pandas in macports is as simple as: sudo port install py27-pandas you usualy install macport in /opt/local and fink in /sw, I. Miniconda allows you to create a minimal self contained Python installation, and then use the Conda command to install additional packages. First you will need Conda to be installed and downloading and running the Miniconda will do this for you. In the list that appears, select the Pandas version you want to install. Click the Apply button. A progress bar appears below the Packages pane while Pandas and its dependencies are installed. To begin using your new environment, click the Environments tab. Click the arrow button next to the Pandas environment.
Overview
Python packages are typically installed from one of two package repositories:

PyPI; or
Any Python package you install from PyPI or Conda can be used from R with reticulate.
Each version of Python on your system has its own set of packages and reticulate will automatically find a version of Python that contains the first package that you import from R. If need be you can also configure reticulate to use a specific version of Python.

Python environments
When installing Python packages it’s typically a good practice to isolate them within a Python environment (a named Python installation that exists for a specific project or purpose). This provides a measure of isolation, so that updating a Python package for one project doesn’t impact other projects.
Install Conda Linux Terminal
The reticulate package includes functions for creating Python environments (either virtualenvs or conda envs) and installing packages within them. Using virtualenvs is supported on Linux and Mac OS X, using Conda environments is supported on all platforms including Windows.