Install python3 and jupyter lab in Windows
Install ScoopPermalink
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 3Permalink
scoop install python
Upgrade pipPermalink
python3 -m pip install --upgrade pip
Create directory structure for Jupyter NotebooksPermalink
- Note: feel free to change the path anything you want
mkdir C:\Projects\Jupyter\Notebooks
cd C:\Projects\Jupyter\Notebooks
Install pipenvPermalink
python3 -m pip install pipenv
pipenv --python 3.7
Install Jupyter NotebooksPermalink
pipenv install jupyterlab
Install related ML libsPermalink
- Note: feel free to add/change any package you want or need
pipenv install pandas numpy matplotlib seaborn sklearn
Run Jupyter NotebooksPermalink
- Note: you need the line below anytime you want to run Jupyter Notebooks
pipenv run jupyter lab
ETC. Set up Linux on WindowsPermalink
launch powershell
wsl --install