python
梦幻贝壳
这个作者很懒,什么都没留下…
展开
-
Python使用requirements.txt安装类库
我们为什么要使用requirements.txt呢?主要使用目的:任何应用程序通常需要设置安装所需并依赖一组类库来满足工作要求。要求文件是指定和一次性安装包的依赖项具体一整套方法。requirements.txt文件格式:requests==1.2.0 Flask==0.10.1方法一:$ pip freeze > requirements.txt查看源转载 2018-01-23 16:53:02 · 557 阅读 · 0 评论 -
利用Anaconda完美解决Python 2与python 3的共存问题
Anaconda 是 Python 的一个发行版,如果把 Python 比作 Linux,那么 Anancoda 就是 CentOS 或者 Ubuntu,下面这篇文章主要给大家介绍了利用Anaconda完美解决Python 2与python 3共存问题的相关资料,文中介绍的非常详细,需要的朋友可以参考借鉴。前言现在Python3 被越来越多的开发者所接受,同时让人尴尬的是很多遗转载 2018-01-25 11:42:29 · 876 阅读 · 2 评论 -
jupyter notebook 设置密码
原创 2017年10月20日 21:07:28标签:jupyterjupyter-notebook password因为需要远程使用jupyter notebook,而且不是可直达的服务器,所以也难以直接套用其内部方案。笔者使用ssh传递信息,但是没有浏览器情况下jupyter notebook貌似不会自动生成token。不想再研究,就直接设置固转载 2018-02-03 13:57:08 · 544 阅读 · 0 评论 -
Jupyter Notebook and Nginx Setup
Jun 21, 2016 • Akash PatroThe Jupyter Notebook is a web application that allows you to create and share documents that contain live code, equations, visualizations and explanatory text. Uses include翻译 2018-02-03 18:05:09 · 675 阅读 · 0 评论 -
Docker: Data Science Environment with Jupyter
Configuring a data science environment can be a pain. Dealing with inconsistent package versions, having to dive through obscure error messages, and having to wait hours for packages to compile can be翻译 2018-01-30 03:33:05 · 578 阅读 · 0 评论 -
Jupyter NoteBook 的快捷键使用指南
Jupyter Notebook 有两种键盘输入模式。即命令模式和编辑模式,这与 Vim 有些类似。在编辑模式下,可以往单元中键入代码或文本,此时单元格被绿色的框线包围,且命令模式下的快捷键不生效。在命令模式下,可以用快捷键命令运行单元格,移动单元格,切换单元格编辑状态等等,此时的单元格被灰色的框线包围,且编辑模式下的快捷键不生效。从命令模式进入编辑模式需按 Enter 键,从编辑模式切换转载 2018-01-30 03:37:54 · 726 阅读 · 0 评论