NameError: name ‘jovian’ is not defined
You need to install and import it first.
- !pip install jovian --upgrade --quiet
- import jovian
- jovian.commit(project=‘projectName’)
Run all the cells from the start cell. The error is coming because you have not run the first 3 cells of the notebook:-
# Install the library
!pip install jovian --upgrade --quiet
import jovian
project_name=‘python-practice-assignment’
jovian.commit(project=project_name, privacy=‘secret’, evironment=None)
Hope I answer your query.
thank you for the answer, it’s working for me
thank you for the answer, it’s working for me
1 Like