04 2020 档案

摘要:问题描述 conda create -n py3.7 python=3.7 anaconda conda activate py3.7 pip freeze #show global packages pip install pytesseract #installed in root enviro 阅读全文
posted @ 2020-04-20 18:30 Sherrrry 阅读(213) 评论(0) 推荐(0)
摘要:1. 下载anaconda Anaconda installer for linxu: https://www.anaconda.com/distribution/#linux wget https://repo.anaconda.com/archive/Anaconda3-2020.02-Linu 阅读全文
posted @ 2020-04-19 05:23 Sherrrry 阅读(277) 评论(0) 推荐(0)
摘要:文件路径表示 绝对路径:从 / (也被称为根目录)开始,eg: /data1/sherry 相对路径:eg: ./data/ . 表示用户所处的当前目录 .. 表示上级目录 ~ 表示当前用户自己的home目录 ~USER 表示用户名为USER的家目录 Log in remote server ssh 阅读全文
posted @ 2020-04-19 05:18 Sherrrry 阅读(646) 评论(0) 推荐(0)
摘要:摘录自: http://cn.linux.vbird.org/linux_basic/0210filepermission.php 查看权限 ls -al total 156 drwxr-x 4 root root 4096 Sep 8 14:06 . drwxr-xr-x 23 root root 阅读全文
posted @ 2020-04-18 04:09 Sherrrry 阅读(181) 评论(0) 推荐(0)
摘要:本文参考:https://blog.csdn.net/yyh352091626/article/details/50714880 下载Github http://git-scm.com/downloads 创建SSH cd ~/.ssh 若文件不存在: ssh-keygen -t rsa -C xx 阅读全文
posted @ 2020-04-07 13:15 Sherrrry 阅读(192) 评论(0) 推荐(0)
摘要:安装 brew install mysql 默认安装路径: /usr/local/Cellar/mysql/8.0.19/bin 把上面的路径添加到~/.zshrc 文件中,方法参考这篇文章。 启动 bash mysql.server start Start SQL Connection mysql 阅读全文
posted @ 2020-04-04 22:36 Sherrrry 阅读(636) 评论(0) 推荐(0)