markdown jupyter,ipython,python

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown jupyter,ipython,python相关的知识,希望对你有一定的参考价值。

## Jupyter Configuration
**Enable auto complete of built-in object like string, list**
```Bash
# generate config file, auto complete is disable by default
ipython profile create

以上命令会在~/.ipython/profile_default/目录下生成ipython_config.py和ipython_kernel_config.py 
我们需要修改的以下几行:

## Activate greedy completion PENDING DEPRECTION. this is now mostly taken care
# of with Jedi.
#
# This will enable completion on elements of lists, results of function calls,
# etc., but can be unsafe because the code is actually evaluated on TAB.
c.Completer.greedy = True

## Experimental: restrict time (in milliseconds) during which Jedi can compute
# types. Set to 0 to stop computing types. Non-zero value lower than 100ms may
# hurt performance by preventing jedi to build its cache.
c.Completer.jedi_compute_type_timeout = 400

## Experimental: Use Jedi to generate autocompletions. Off by default.
c.Completer.use_jedi = True
```

**Generate Chart Against Plotly**
```Bash
follow the official document generate api key; 
run python script create .credentials; 
genrate streams api key;
update .credentials file;
done!
```


## Refer:
[Plotly Offical Doc](https://plot.ly/python/getting-started/)

[CSDN](https://blog.csdn.net/huangkangying/article/details/80769743)

以上是关于markdown jupyter,ipython,python的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Markdown 单元格 ipython/jupyter 笔记本中更改颜色?

初学者需要IPython 与 Jupyter Notebook 吗?

Jupyter和IPython

jupyter 和 ipython的区别

pyenv ipython jupyter

目前在 Jupyter/iPython 中动态更新绘图的正确方法是啥?