All Projects → ipython → Ipython In Depth

ipython / Ipython In Depth

Licence: other
IPython and Jupyter in-depth Tutorial, first presented at PyCon 2012

Projects that are alternatives of or similar to Ipython In Depth

Python misc
Collection of Misc. Python Files
Stars: ✭ 5 (-99.4%)
Mutual labels:  jupyter-notebook
Collaboration
Repo for collaborating on documents
Stars: ✭ 5 (-99.4%)
Mutual labels:  jupyter-notebook
Emet summer workshop
Repository for the North American Summer Meeting of the Econometric Society 2016 workshop
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Modelarts Lab
ModelArts-Lab是示例代码库。更多AI开发学习交流信息,请访问华为云AI开发者社区:huaweicloud.ai
Stars: ✭ 826 (-0.12%)
Mutual labels:  jupyter-notebook
Qmcs.github.io
EECS Society. Queen Mary University of London
Stars: ✭ 5 (-99.4%)
Mutual labels:  jupyter-notebook
Ms Agv Car
微軟人工智慧實務工作坊及 CAVEDU 研習課程之無人載具範例程式
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Oddity
Stars: ✭ 5 (-99.4%)
Mutual labels:  jupyter-notebook
Nazarkav
Persian Sentiment Analysis
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Brawl4d
Let the data fight it out
Stars: ✭ 5 (-99.4%)
Mutual labels:  jupyter-notebook
Stock Market Analysis Using Python Pandas Numpy
- Performed stock market analysis of technology company’s stocks. - Used pandas to get stock information and to visualize different aspects of stock and performed risk analysis of the stock based on its previous performance history.
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Ntu ml2017 hung Yi Lee hw
NTU ML2017 Spring and Fall Homework Hung-yi_Li 李宏毅老师 机器学习课程作业
Stars: ✭ 827 (+0%)
Mutual labels:  jupyter-notebook
Advertorch
A Toolbox for Adversarial Robustness Research
Stars: ✭ 826 (-0.12%)
Mutual labels:  jupyter-notebook
Pytest Intro
Intro practice session to py.test
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Paperlm1
Stars: ✭ 5 (-99.4%)
Mutual labels:  jupyter-notebook
Xen Code Review Analysis
This repository contains the tools and method follow to produce code review dashboards for the Xen community
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Yiakwy.github.io
html js hosted on GitHub
Stars: ✭ 5 (-99.4%)
Mutual labels:  jupyter-notebook
Tfidf
Simple TF IDF Library
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Alembic
A set of tools for elastic image registration in Julia
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Jupyter Notes
Some notes, taken with jupyter noteboook, about my studies and my interests
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook
Teaching
Website for tutorials
Stars: ✭ 6 (-99.27%)
Mutual labels:  jupyter-notebook

PyCon 2019 Jupyter tutorial.

Binder

This repository contain material and instructions to follow the "IPython and Jupyter in Depth: High productivity, interactive Python" tutorial during PyCon 2019.

Installation

Please read the following section and install the required software ahead of time. We may ask you to update versions of the software more closely to the tutorial date.

Please do not rely on cloud hosting to follow this tutorial, as the network connection may be unreliable. If possible, come to the tutorial with a computer where you have administrative privileges.

For this tutorial, we are standardizing on a conda-based python distribution (miniconda or Anaconda). We may not be able to help with installation issues if you are using a different python distribution.

Software installation

  1. Install either the full anaconda distribution (very large, includes lots of conda packages by default) or miniconda (much smaller, with only essential packages by default, but any conda package can be installed).

  2. To get the tutorial materials, clone this repository. Please plan to update the materials shortly before the tutorial.

    git clone https://github.com/ipython/ipython-in-depth
    

    To update the materials:

    cd ipython-in-depth
    git pull
    

    Feel free to open an issue or send a pull request to update these materials if things are unclear.

  3. Set up your environment.

    Create a conda environment:

    conda create -n pycon2019 -c conda-forge --yes python=3.7 pip cookiecutter=1.6 'notebook=5.7' pandas=0.24 nodejs=9.11 jupyterlab bqplot ipyvolume pythreejs aiohttp line_profiler matplotlib rpy2 simplegeneric trio cython pillow
    

    (You could instead create the environment from the supplied environment file with conda env create -f pycon2019-jupyterlab-tutorial/environment.yml)

    Activate the conda environment:

    conda activate pycon2019
    

    Install extra JupyterLab extensions:

    jupyter labextension install @jupyter-widgets/jupyterlab-manager jupyter-threejs ipyvolume bqplot @jupyterlab/geojson-extension @jupyterlab/fasta-extension
    

If you open multiple terminal windows make sure to activate the environment in each of them. Your terminal prompt should be preceded by the name of the current environment, for example:

(pycon2019) ~/ipython-in-depth $

Starting JupyterLab

Enter the following command in a new terminal window to start JupyterLab.

$ jupyter lab

Removing environment

You can delete the environment by using the following in a terminal prompt.

conda env remove --name pycon2019 --yes

This will not delete any data, but only the conda environement named pycon2019 .

Troubleshooting

If you experience an out-of-memory error, you can increase the memory available:

NODE_OPTIONS=--max_old_space_size=4096 jupyter lab build

or

NODE_OPTIONS=--max_old_space_size=4096 jupyter labextension install ...

This increases the available memory for the build process to 4Gb.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].