Learn practical skills, build real-world projects, and advance your career
pip install jovian
Collecting jovian Downloading jovian-0.2.26-py2.py3-none-any.whl (66 kB) Collecting uuid Downloading uuid-1.30.tar.gz (5.8 kB) Requirement already satisfied: requests in c:\users\ifm\anaconda3\lib\site-packages (from jovian) (2.24.0) Requirement already satisfied: pyyaml in c:\users\ifm\anaconda3\lib\site-packages (from jovian) (5.3.1) Requirement already satisfied: click in c:\users\ifm\anaconda3\lib\site-packages (from jovian) (7.1.2) Requirement already satisfied: idna<3,>=2.5 in c:\users\ifm\anaconda3\lib\site-packages (from requests->jovian) (2.10) Requirement already satisfied: certifi>=2017.4.17 in c:\users\ifm\anaconda3\lib\site-packages (from requests->jovian) (2020.6.20) Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\users\ifm\anaconda3\lib\site-packages (from requests->jovian) (1.25.11) Requirement already satisfied: chardet<4,>=3.0.2 in c:\users\ifm\anaconda3\lib\site-packages (from requests->jovian) (3.0.4) Building wheels for collected packages: uuid Building wheel for uuid (setup.py): started Building wheel for uuid (setup.py): finished with status 'done' Created wheel for uuid: filename=uuid-1.30-py3-none-any.whl size=6505 sha256=6f32ce8e62c41568e178ecad4abc8aa5ec41a15e4df82de86ee56424e12239d9 Stored in directory: c:\users\ifm\appdata\local\pip\cache\wheels\1b\6c\cb\f9aae2bc97333c3d6e060826c1ee9e44e46306a178e5783505 Successfully built uuid Installing collected packages: uuid, jovian Successfully installed jovian-0.2.26 uuid-1.30 Note: you may need to restart the kernel to use updated packages.
import jovian
jovian.commit(project='first-steps-with-python')
[jovian] Attempting to save notebook.. [jovian] Please enter your API key ( from https://jovian.ai/ ): API KEY: ········ [jovian] Creating a new project "ivfimo/first-steps-with-python"
--------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) <ipython-input-4-4c4314607d5d> in <module> ----> 1 jovian.commit(project='first-steps-with-python') ~\anaconda3\lib\site-packages\jovian\utils\commit.py in commit(message, files, outputs, environment, privacy, filename, project, new_project, git_commit, git_message, **kwargs) 195 196 # Create or update gist (with title and ) --> 197 res = api.create_gist_simple(filename, project_id, privacy, project_title, message) 198 slug, owner, version, title = res['slug'], res['owner'], res['version'], res['title'] 199 username = owner['username'] ~\anaconda3\lib\site-packages\jovian\utils\api.py in create_gist_simple(filename, gist_slug, privacy, title, version_title) 54 auth_headers = _h() 55 ---> 56 with open(filename, 'rb') as f: 57 nb_file = (filename, f) 58 log('Uploading notebook..') FileNotFoundError: [Errno 2] No such file or directory: 'Untitled1.ipynb'
jovian.commit(project='first-steps-with-python')
[jovian] Attempting to save notebook.. [jovian] Creating a new project "ivfimo/first-steps-with-python" [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ai/ivfimo/first-steps-with-python
import jovian