1. Install Package Manager Homebrew
It is the package manager for macOS. Following the install step on the website to install it.
2. Install Python3 2-1. Homebrew $ brew install python 2-2. Miniconda 1. Download installer $ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh 2. Install # install miniconda in ~/opt $ mkdir -p ~/opt $ chmod +x Miniconda3-latest-MacOSX-x86_64.sh $ bash Miniconda3-latest-MacOSX-x86_64.sh 3. Activate conda 1. bash Copy conda initialize in ~/.bash_profile to ~/.bashrc, as below: Activate $ source ~/.
1. Install request package $ sudo apt-get update && apt-get upgrade $ sudo apt-get install wget vim 2. Install Python3 Miniconda
2-1. Download installer $ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh 2-2. Change the access permissions of files $ chmod +x Miniconda3-latest-Linux-x86_64.sh 2-3. Install # install miniconda in ~/opt $ mkdir -p ~/opt $ bash Miniconda3-latest-Linux-x86_64.sh 2-4. Activate conda 1. bash Copy conda initialize in ~/.bash_profile to ~/.bashrc, as below: Activate $ source ~/.bashrc # or open new Terminal
1. Install Package Manager Chocolate
It is the package manager for windows. Following the install step on the website to install it.
2. Install More Handy Terminal ConEmu
Using choco to install it.
> choco install conemu 3. Install Git Bash Git for Window
Download and Install it.
4. Open ConEmu Opening ConEmu and choose git bash, then you can use Unix-commands.
git bash
5. Install Python3 Install Miniconda3
$ choco install miniconda3 --params="'/AddToPath:1'" then you can use conda and python
Python Environment Setup Tutorials Medium: Install Python on Windows
Windows macOS Ubuntu