- 博客(29)
- 收藏
- 关注
转载 Euleros升级gcc
一、预备命令: 1、缺少find命令,使用: sudo yum installfindutils 2、缺少string命令, 使用: sudo yum install binutils 3、缺少ifconfig,yum安装ifconfig这个命令包。命令:yum sea...
2019-09-06 00:44:00 2753
转载 window安装docker(通过Oracle VM VirtualBox)
一、下载: 软件DockerToolbox-19.03.1.exe下载:https://github.com/docker/toolbox/releases 国内:https://get.daocloud.io/toolbox/ 最新版boot2docker.iso:https://...
2019-09-02 00:19:00 2509
转载 websocket_client
代码如下: #!/usr/bin/python3# -*- coding: UTF-8 -*-"""运行环境:win7_x86 python3.7.3_x86运行命令:"""import asyncioimport pathlibimport ssli...
2019-08-29 00:27:00 349
转载 python生成动态库pyd
一、gcc下载安装: http://www.mingw-w64.org/doku.php/download https://sourceforge.net/projects/mingw-w64/files/mingw-w64/ MinGW-w64安装教程——著名C/C++编译器GCC的...
2019-08-26 23:18:00 540
转载 EulerOS-V2.0SP5-x86_64制作镜像
一、下载: https://www.huaweicloud.com/content/cloudbu-develop/china/zh-cn/developer/euleros/download.html?developlan=Other https://developer.huawei.c...
2019-08-25 00:36:00 5171
转载 win10 显卡安装
一、驱动: 下载地址:https://www.geforce.cn/drivers 安装驱动,选择自定义安装。 二、cuda安装:(tensorflow-gpu1.14.0使用的是10.0,所以做好安装10.0) 下载地址:https://developer.nvidia.com/...
2019-08-18 23:16:00 445
转载 Centos7.6安装工具(7)--安装gophernotes(jupyter notebook下安装go内核)
官网安装方法: https://github.com/gopherdata/gophernotes#linux 一、下载gophernotes 从github上下载 https://github.com/gopherdata/gophernotes 或 sudo su...
2019-08-11 21:01:00 709
转载 Centos7.6安装工具(6)--安装Go语言及搭建Go语言开发环境
下载地址 1.1 Go官网下载地址:https://studygolang.com/dl 1.2 Go官方镜像站(推荐):https://golang.google.cn/dl/ 版本的选择 Windows平台和Mac平台推荐下载可执行文件版,Linux平台下载压缩文件版。 ...
2019-08-11 17:28:00 572
转载 Centos7.6安装工具(5)--编译安装python374
1、安装相关库 yum -y install zlib zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel yum -y install tk-devel gdbm-devel db...
2019-08-04 23:20:00 993
转载 Centos7.6安装工具(4)--安装docker-ce
一、如果安装了docker的老版本,需要卸载: # 删除docker$ sudo yum -y remove docker \ docker-client \ docker-client-latest \ ...
2019-08-04 21:16:00 180
转载 Centos7.6安装工具(3)
一、设置窗口打不开: 输入下面命令,进行重新安装 sudo yumreinstalllibwbclient -y 转载于:https://my.oschina.net/men...
2019-08-04 18:06:00 197
转载 Centos7.6安装工具(1)
Centos常用设置 1.当最大化时隐藏标题栏 或者使用tweak tool 在字体中将标题栏字体设置为0...建议这个方法. 2.添加epel源 yum -y --nogpgcheck install http://download.fedoraproject.org/pu...
2019-08-04 14:56:00 206
转载 centos7安装NVIDIA驱动_GeForce GTX 1050 Ti以及CUDA
一、预处理: 1、检测显卡驱动及型号 ##添加ELPepo源,参照网上资料有版本差异,我取最新版本,地址如下:http://elrepo.org/tiki/tiki-index.php sudo rpm --import https://www.elrepo.org/RPM-GPG-K...
2019-08-04 11:57:00 1656
转载 tensorflow 安装
https://github.com/tensorflow/tensorflow/releases/tag/v1.14.0 https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&a...
2019-07-21 22:15:00 85
转载 Ubuntu tty中文字符乱码
默认的tty只能显示一个字节,我们可以用setfont命令去改tty字体,但仅仅局限在一个字节内,不支持UTF-8多字节,所以我们就没办法使用汉字。但是我们可以使用FbTerm啊!FbTerm是支持中文显示的控制台,其提供了一个快速的终端仿真器,它直接运行在你的系统中的帧缓冲 (framebu...
2019-07-21 13:19:00 1300
转载 Linux init 命令
init命令用于切换到指定的运行级别,用法如下: [root@localhost ~]# init 0 //关机[root@localhost ~]# init 1 //切换到单用户模式/救援模式[root@localhost ~]# init 2 //切换到无网络...
2019-07-21 11:19:00 176
转载 jupyter部署安装
sudo /usr/bin/python3 -m ipykernel install --name python3.6.8 sudo pip373 installipykernel sudo python373 -m ipykernel install --name python3....
2019-07-20 22:59:00 316
转载 centos安装增强功能出现kernel headers not found for target kernel解决办法
最近新安装一个centos虚拟机,在安装增强功能的时候出现了,kernel headers not found for target kernel的错误。特记下我的解决方案。 1.update kernel yum update kernel -y 2.Install thekerne...
2019-07-20 20:09:00 3131
转载 win10家庭版(组装机)安装docker
组装机采用下载的window原厂版本,其Hyper-V启动不成功的方式。 一、下载: https://github.com/docker/toolbox/releases 安装 Docker Toolbox 文档:https://docs.docker.com/docker-for...
2019-07-20 16:44:00 199
转载 win10家庭版(OEM主机)安装docker
OEM主机安装的win10家庭版,实际上是可以启动Hyper-V的,所以可以依据下面的步骤: 1.安装前可能出现如下问题 (1)电脑没有启用虚拟化 重启电脑,系统启动前进入BIOS界面,启动Intel Virtual Technology,如下图所示(不同的BIOS系统在不同位置...
2019-07-20 16:39:00 277
转载 jetson nano安装
一、下载地址: 官网下载地址: https://developer.nvidia.com/embedded/downloads#?tx=$product,jetson_nano 镜像地址: https://developer.download.nvidia.cn/assets/emb...
2019-07-20 16:28:00 555
转载 opencv安装缺失文件
参见链接: https://github.com/opencv/opencv_contrib/issues/1301 #!/bin/bashcd ./cachewget https://raw.githubusercontent.com/opencv/opencv_3rdpa...
2019-07-08 09:35:00 1112
转载 win10 docker换国内源
1.打开终端cmd 2.执行命令:docker-machine ssh 3.修改配置文件: sudo vi /var/lib/boot2docker/profile --label provider=virtualbox的下一行添加: --registry-mirror=http:/...
2019-07-07 00:54:00 4266
转载 Windows10家庭版安装Docker Desktop(非Docker Toolbox)
记录文章地址 链接:https://www.jianshu.com/p/1329954aa329/ 转载于:https://my.oschina.net/mengyoufengyu/b...
2019-07-06 10:03:00 76
转载 jetson nano系统备份和恢复
系统安装完毕,需要进行备份,又如何恢复到其他SD卡上呢?环境是ubuntu18.04,jetson系统U盘,以U盘形式插入 一、备份 1、首先使用以下命令确认需要备份的u盘的设备号 sudo fdisk -l 我的确定是/dev/sdc 2、建立备份目录: mkdir jetson...
2019-07-03 00:44:00 5161
转载 jetson nano安装初始化_遇到的坑(2)
一、安装谷歌输入法: sudo apt remove 'ibus*'sudo apt install fcitx-bin fcitx-tablesudo apt install fcitx-googlepinyinsudo apt install 'fcitx-config-gt...
2019-07-03 00:19:00 501
转载 jetson nano安装初始化_遇到的坑(1)
一、更换国内源(使用清华源,其他有的太旧或有问题) 首先备份原本的source.list文件 #为防止误操作后无法恢复,先备份原文件sources.listsudo mv /etc/apt/sources.list /etc/apt/sources.list.bak sudo...
2019-07-03 00:13:00 900
转载 swagger-editor镜像安装
一、文档官网地址: https://swagger.io/docs/open-source-tools/swagger-editor/ 二、镜像地址: https://hub.docker.com/r/swaggerapi/swagger-editor/ 三、镜像下载命令: dock...
2019-07-02 19:25:00 436
转载 参考备份Jetson Nano系统(该程序不完备,制作的image不可用,仅供)
参考备份Jetson Nano系统(该程序不完备,制作的image不可用,仅供) #!/usr/bin/python3# -*- coding: utf-8 -*-"""Description: Ubuntu 19.04 Python 3.7.3FileName: back...
2019-06-30 22:48:00 666
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人