安装jupyter notebook
摘要:1.安装jupyter notebook conda install jupyter notebook # anaconda安装完后 默认是安装了jupyter notebook pip3.8 install jupyter # 安装jupyter notebook jupyter notebook
阅读全文
Linux-Centos7下安装Anaconda
摘要:1.创建目录 mkdir -p /usr/local/Anaconda/catalogue /usr/local/Anaconda/install cd /usr/local/Anaconda 2.下载 wget https://repo.anaconda.com/archive/Anaconda3
阅读全文
conda更换下载源
摘要:conda更换下载源 1.conda源更换为清华 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes
阅读全文
jupyter notebook 快捷键
摘要:jupyter notebook 快捷键 命令模式 (按键 Esc 开启)快捷键: Enter : 转入编辑模式 Shift-Enter : 运行本单元,选中下个单元 Ctrl-Enter : 运行本单元 Alt-Enter : 运行本单元,在其下插入新单元 Y : 单元转入代码状态 M :单元转入
阅读全文
Anaconda 下载
摘要:Anaconda官网:https://repo.anaconda.com/archive/清华大学镜像站:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/?C=N&O=D C:\01-python\06-Anaconda Python需要C
阅读全文
Jupter 7个进阶功能
摘要:1. 执行shell命令 Shell是一种与计算机进行文本交互的方式。 一般来讲,当你正在使用Python编译器,需要用到命令行工具的时候,要在shell和IDLE之间进行切换。 但是,如果你用的是Jupyter,就完全不用这么麻烦了,你可以直接在命令之前放一个“!”,就能执行shell命令,完全不
阅读全文