
其他
快乐遇见忧伤
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
oracle initialization or shutdown in progress
原因: 意外删除数据库命名空间的实体文件解决方法:connect [username]/[passwd] as sysdba SQL> connect system/passwd as sysdba 已连接。 SQL> shutdown normal ORA-01109: 数据库未打开已经卸载数据库。 ORACLE 例程已经关闭。 SQ...原创 2018-04-13 15:48:03 · 312 阅读 · 0 评论 -
Jupyter Notebook服务器模式配置
1、生成配置文件jupyter notebook --generate-config2、生成秘钥 在终端输入 ipython,创建一个秘钥In [1]: from notebook.auth import passwdIn [2]: passwd()Enter password: Verify password: Out[2]: 'sha1:ce23d945972f:34...原创 2018-05-31 15:15:40 · 611 阅读 · 0 评论 -
git使用手册
#1、创建仓库本地目录创建仓库:git init远程仓库克隆:git clone#2、常见操作查看文件状态:git status跟踪新文件:git add <new file>忽略某些文件: 在仓库中加入 .gitignore文件,并把需要忽略的文件名或者目录名记录在.gitignore文件查看文件前后变化:git diff <file>提交更新:git c...转载 2018-11-12 20:47:26 · 243 阅读 · 0 评论