$ python -m venv myenv
$ ./myenv/Scripts/activate
$ pip install jupyter numpy pandas
$ pip freeze > requirements.txt # add package into requirements.txt (for install python -r requirements.txt)
# Add this package if not present: pip install ipykernel
$ ipython kernel install --user --name=your_env_name
$ jupyter-notebook
! pip install numpy
#!/usr/bin/bash
#Set Password to jupyter
#jupyter notebook password
jupyter notebook --ip 0.0.0.0 --port 8888
F:
cd projects\python-notebook
call .\myenv\Scripts\activate.bat
:: call pip install -r requirements.txt
jupyter notebook --ip 127.0.0.1 --port 8888
pause