- #1
fog37
- 1,568
- 108
- TL;DR Summary
- install and import commands meaning
Hello again,
- import command: when working with Jupyter notebooks and Python, the command import is used to import both modules and libraries into the working environment, i.e. the notebook itself, correct? This means that the module or library is already installed, i.e. all the code is already present in our computer (it was provided when we downloaded Jupiter or the distribution that Jupyter comes from), and we are making its capabilities accessible from within the notebook...
- install command: In Jupyter notebook, when we use the install command, will the module/library and all its code be uploaded from the internet? Does that mean there must be an active internet connection to perform this installation task?