sudo apt-get update sudo apt-get install python3-dev # 装talib前要先装numpy python3.6 -m pip install numpy -i https://pypi.doubanio.com/simple wget http:// ...
分类:
系统相关 时间:
2021-01-14 10:54:36
阅读次数:
0
Docker 换国内源 先创建daemon.json文件,系统默认是没有这个文件。 sudo vim /etc/docker/daemon.json 复制代码 编辑daemon.json,填入以下内容。 { "registry-mirrors": [ "https://kfwkfulq.mirror ...
分类:
其他好文 时间:
2021-01-13 11:24:55
阅读次数:
0
edit config && add Port 2222 vi /etc/ssh/sshd_config 重启ssh服务 systemctl restart sshd.service 查看端口 sudo netstat -atlunp | grep sshd ...
分类:
系统相关 时间:
2021-01-13 10:51:14
阅读次数:
0
1 安装依赖 ## Install dependencies sudo apt -y install build-essential checkinstall cmake pkg-config yasm sudo apt -y install git gfortran sudo apt -y ins ...
分类:
系统相关 时间:
2021-01-13 10:46:58
阅读次数:
0
1.虚拟环境概念: 虚拟环境是指一个主机上虚拟的相对独立的运行环境,使得单个项目的运行环境与其它项目互不影响. 2. python为什么要用虚拟环境: 在python中,要使用某个工具包时,通过 sudo pip install 工具 进行安装,这种安装方式会将工具包安装到/usr/local/li ...
分类:
编程语言 时间:
2021-01-13 10:38:59
阅读次数:
0
一、手动安装 1、安装wine $ sudo add-apt-repository ppa:wine/wine-builds $ sudo apt-get update $ sudo apt-get install winehq-devel 或下载稳定版本 $ sudo apt-get instal ...
分类:
系统相关 时间:
2021-01-12 11:23:52
阅读次数:
0
备份原镜像 sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup sudo mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo ...
分类:
其他好文 时间:
2021-01-12 10:29:17
阅读次数:
0
一、镜像操作 1)构建镜像 docker build -t REPOSITORY:TAG . 注意最后一个点[.]不能缺少,生成完:runoob/centos为REPOSITORY,6.7为TAG 2)获取镜像 sudo docker pull REPOSITORY[:TAG] 3)为镜像打个标签 ...
分类:
其他好文 时间:
2021-01-11 11:04:35
阅读次数:
0
Loy_Fan 2019-07-05 09:34:27 1726 收藏 1 分类专栏: 软件安装 Ubuntu/Windows系统相关版权.deb文件 #方法一直接双击进入安装管理页面安装 #方法二>> sudo dpkg -i package.deb12345.whl文件里面带的“cp27 cp3 ...
分类:
系统相关 时间:
2021-01-11 10:47:47
阅读次数:
0
Python程序操作MySQL数据库 安装pymysql第三方包: sudo pip3 install pymysql 说明: 安装命令使用 sudo pip3 install 第三方包名 卸载命令使用 sudo pip3 uninstall 第三方包 大家现在使用的虚拟机已经安装了这个第三方包,可 ...
分类:
数据库 时间:
2021-01-08 10:29:53
阅读次数:
0