# Start
jupyter lab
# Create
python -m ipykernel install --user --name=myenv
# List
jupyter kernelspec list
# Remove
jupyter kernelspec uninstall env
# Create virtualenv
virtualenv --python=C:\Python36\python36.exe env
# Enable scripts
Get-ExecutionPolicy
Set-ExecutionPolicy Unrestricted -Scope Process
# activate
.\env\Scripts\activate.ps1
# deactivate
deactivate
pip3.6 install --upgrade pip3.6 setuptools wheel
pip3.6 install -I tensorflow
pip3.6 install -I keras