jupyter kernel建立 刪除

2021-10-10 05:52:56 字數 429 閱讀 4668

**

個人學習收藏,侵刪

conda create -n py36 python=36 # 建立乙個python36的環境,名為py36

source activate py36 # 啟用py36環境

conda install ipykernel # 安裝ipykernel模組

#進行配置 名字為py36顯示為py3636

python -m ipykernel install --user --name py36 --display-name 「py3636」

jupyter notebook # 啟動jupyter notebook

檢視安裝的核心和位置

jupyter kernelspec list

刪除py36

jupyter kernelspec remove py36

建立主鍵 建立外來鍵 建立約束

建立主鍵 三種方法 建立學生表 第一種 create table student sno char 5 primary key,學號 可以直接指定主鍵 sname char 20 not null,姓名 s char 3 not null,性別 sage integer not null,年齡 sd...

Oracle建立儲存過程 建立函式 建立包

一 oracle建立儲存過程 1 基本語法 create orreplace procedureupdate emp sal name inout type,name inout type,is begin endupdate emp sal 2 寫乙個簡單的例子修改emp表的ename欄位 cre...

Oracle建立儲存過程 建立函式 建立包

一 oracle建立儲存過程 1 基本語法 create or replace procedure update emp sal name in out type,name in out type,is begin end update emp sal 2 寫乙個簡單的例子修改emp表的ename欄...