How to install Miniconda:
https://conda.io/docs/user-guide/install/windows.html
The installer is found under:
https://repo.continuum.io/miniconda/Miniconda3-latest-Windows-x86_64.exe
See http://conda.io
Also see https://conda.io/docs/_downloads/conda-cheatsheet.pdf
To create an environment execute in the terminal ("command prompt"):
conda create -n base python=3.6
activate base
To install Python packages and start Jupyter execute in the terminal:
conda install ipython jupyter numpy pandas scikit-learn matplotlib pytables
pip install win-unicode-console
set PYTHONIOENCODING=UTF-8
jupyter notebook
For installing the brew
package manager, follow the instructions under:
Installing system tools in a terminal/on the shell:
brew install wget htop screen [MORE IF NEEDED]
To download and install it:
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
bash miniconda.sh
Open new terminal to activate the Python installation.
See http://conda.io
Also see https://conda.io/docs/_downloads/conda-cheatsheet.pdf
To create an environment execute:
conda create -n base python=3.6
source activate base
To install Python packages and start Jupyter execute in the terminal:
conda install ipython jupyter numpy pandas scikit-learn matplotlib pytables
jupyter notebook
Doing system updates and installing system tools in the terminal/on the shell:
apt-get update
apt-get upgrade
apt-get install wget bzip2 screen vim gcc [MORE IF NEEDED]
To download and install it:
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh
Open a new terminal/shell instance to activate the Python installation.
See http://conda.io
Aslo see https://conda.io/docs/_downloads/conda-cheatsheet.pdf
To create an environment execute:
conda create -n base python=3.6
source activate base
To install Python packages and start Jupyter execute in the terminal:
conda install ipython jupyter numpy pandas scikit-learn matplotlib pytables
jupyter notebook
[email protected] | http://tpq.io
got it bro