// 启动MySQL服务: sudo /usr/local/MySQL/support-files/mysql.server start //停止MySQL服务 sudo /usr/local/mysql/support-files/mysql.server stop //重启MySQL服务 sud...
分类:服务器
38 篇文章it-tools安装 GitHub:https://github.com/CorentinTh/it-tools docker安装,按照官网按照,语言无法切换,参考:https://github.com/CorentinTh/it-tools/issues/996 解决方案: 使用:nightly ...
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh chmod +x Miniconda3-latest-Linux-x86_64.sh ./Miniconda3-latest-Linux-x86_64...
#### 配置git ssh - 生成:ssh-keygen -t rsa -b 4096 -C "1049598673@qq.com" - cd /home/.ssh - cat id_rsa.pub - 这里配置:https://github.com/settings/keys...
### conda ~~~ 导出已有的环境 conda env export > environment.yaml 根据yaml文件创建新的环境 conda env create -f environment.yaml ~~~ ~~~ 复制 https://tool.4xseo.com/a/853....
### 查看当前系统的磁盘分布 ~~~ df -h ~~~ ### CentOS查看目录占用空间大小 ~~~ du -ah --max-depth=1 ~~~ ### CentOS查看目录占用空间大小 ~~~ du -sh ./* ~~~...
进入项目根目录,执行创建命令 ~~~ #创建命令1 python3 -m venv {虚拟环境名字} #创建命令2 virtualenv {虚拟环境名字} #激活命令 # windows {虚拟环境名字}\Scripts\activate # linux/macox source {虚拟环境名字}/...