15 Working with jupyter notebook
- open terminal
- Type
jupyter notebook
- Go to –> new –> folder (or select and exiting folder from the files list)
- Then creat jupyter notebook new–> Python 3
16 Working with pycharm
- First install pycharm
- Open pycharm
- Create a project (select a location)
- Open terminal
- Type
jupyter notebook
- Create jupyter notebook
- Quit notebook
16.1 install packages
python -m pip install <package>
must read what toavoide: https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/
16.2 Install Python package using Jupyter Notebook
- https://www.geeksforgeeks.org/install-python-package-using-jupyter-notebook/
import sys !{sys.executable} -m pip install [package_name]