Follow the below steps to install the latest version of PostgreSQL on Windows by scoop package manager.
scoop install postgresql -g
:: Default installation path. You can change it to any directory you want. | |
mkdir C:\Development\jupyter | |
cd C:\Development\jupyter | |
:: Create a Python virtual environment | |
python -m pip install --upgrade pip | |
python -m venv env | |
:: Activate virtual environment and install jupyter notebook | |
env\Scripts\activate |
;; G Suite - https://gsuite.google.com/ | |
;; Adds G Suite MX records | |
;; Documentation | |
;; https://support.google.com/a/answer/140034 | |
;; Adds the default G Suite SPF as a TXT record. | |
;; Documentation | |
;; https://support.google.com/a/answer/33786 |
Install latest version of MySQL via scoop package manager on Windows. If you want to install specific version of MySQL, just replace "mysql" with "mysql@version". For example: "[email protected]".
scoop install mysql -g
# Make sure PowerShell 5 (or later, include PowerShell Core) and .NET Framework 4.5 (or later) are installed. Then run the following steps. | |
# Install Scoop | |
iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
# Note: if you get an error you might need to change the execution policy (i.e. enable Powershell) with Set-ExecutionPolicy RemoteSigned -scope CurrentUser | |
# Install Python 3 | |
scoop install python | |
# Upgrade pip |
[Unit] | |
Description=Apache ZooKeeper Centralized Service | |
Requires=network.target | |
After=network.target | |
[Service] | |
Type=forking | |
Restart=always | |
RestartSec=0s | |
ExecStart=/opt/zookeeper/bin/zkServer.sh start |
docker run --name mysql8 -e MYSQL_ROOT_PASSWORD=123456 -p 3306:3306 -d mysql:8.0.11 --default-authentication-plugin=mysql_native_password |