Skip to content

dannyjacosta/python-per-11036

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

To create an environment python -m venv .venv

To install Jupyter Notebooks pip install jupyter

To save dependencies to a text file pip freeze > packages.txt

To Install dependencies from a text file pip install -r .\dependencies.txt

To start Jupyter Notebooks

  • jupyter notebook
  • jupyter notebook --no-browser

To enable code autocompletion in Jupyter Notebooks Jupyter notebooks version 7 and higher doesn't require external extensions to enable code autocompletion.

  1. Go to Settings
  2. Select Code Completion
  3. Check Enable autocompletion
  4. On the left pane select Code Mirror
  5. Check Auto Closing Brackets

To Install Numpy pip install numpy

To increase Jupyter Notebook's default rate limit

  • Option 1 - Pass parameter when loading Juypter jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000 This sets the rate limit to 10,000,000 transactions per second.

  • Option 2 - Make the change permanent in the jupyeter config file
    • jupyter notebook --generate-config
    • Uncoment and modify the generated config to include or update:
    • c.ServerApp.iopub_data_rate_limit = 10000000

About

Curso de programación en Python ‐ PER 11036

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published