在使用jupyter的时候,代码提示每次都要Tab键,感觉有点麻烦,索性就研究了一下。
果然,jupyter也可以和PyCharm一样强大。
| 
			 1 2 3 4 5 6 7  | 
			
			 pip install jupyter_contrib_nbextensions -i https://pypi.tuna.tsinghua.edu.cn/simple 
 jupyter contrib nbextension install --user 
 pip install jupyter_nbextensions_configurator -i https://pypi.tuna.tsinghua.edu.cn/simple 
 jupyter nbextensions_configurator enable --user  | 
		



