环境搭建
文章平均质量分 56
高于超
这个作者很懒,什么都没留下…
展开
-
vsCode server 连接失败解决方案
# vscode的linux server安装失败导致的无法连接远程服务器大概率是linux server相关文件下载失败导致的解决方案:1. 下载对应版本号的linux server版本号可以从vscode输出那看到参考:https://blog.csdn.net/wyg1997/article/details/101460961下载地址:https://update.code.visualstudio.com/commit:<需替换的commit-id>/server-原创 2021-08-16 16:13:31 · 2192 阅读 · 0 评论 -
error: <urlopen error [Errno 104] Connection reset by peer> Failed building wheel for shellcheck-py
在linux系统上安装paddlehub时,出现ERROR: Failed building wheel for shellcheck-py的问题时的具体操作原创 2021-06-29 23:12:54 · 1062 阅读 · 0 评论 -
How to reset the root password for MySQL
To reset the root password for MySQL, follow these steps:Log in to your account using SSH. You must run the commands in the following steps as the root user. Therefore, you can either log in direct...原创 2019-01-26 13:12:20 · 210 阅读 · 0 评论 -
Linux下Docker 相关指令及应用
1,加载镜像查看所有镜像docker images使用该指令加载docker镜像:》原创 2021-06-07 11:18:47 · 309 阅读 · 0 评论 -
Linux下虚拟环境+paddlepaddle-gpu环境搭建过程记录
一、虚拟环境搭建1.查询虚拟环境账号:原创 2021-06-04 10:53:32 · 1336 阅读 · 0 评论 -
在Dorcker中创建虚拟环境+torch1.6
记录一下自己在容器中创建虚拟环境,以便以后查看。pip install virtualenv1,环境中已有的pip安装virtualenv,当出现安装成功指示后,就可以进行下一步pip install virtualenvwrapper2,安装wrapper成功后,指出环境中相应python的版本,进行创建mkvirtualenv -p python3.7 py33,我这里使用的是python3.7,并创建虚拟环境名为py34,此时进入了py3的虚拟环境,安装 pyto原创 2020-08-06 10:46:02 · 290 阅读 · 0 评论 -
ubuntu 创建新用户useradd
1.sudo su2.useradd songsl -d /home/songsl -m -g 1000 -s /bin/bash //-g 组用户1000 swntech3.visudo添加一行: songsl ALL=(ALL:ALL) ALL4.passwd songsl5.su songsl新建用户完毕!################################...原创 2018-12-06 16:09:07 · 664 阅读 · 0 评论 -
在新版caffe中添加center_loss层
准备工作:1,首先你需要有一个可以make编译通过的caffe(这个过程在第一篇blog中已经写出)和一个带有center_loss层的caffe-face(可以直接在github上clone下来)caffe-face网址:https://github.com/ydwen/caffe-face 下载命令如下:git clone https://github.com/ydwen...原创 2018-09-06 14:21:53 · 861 阅读 · 0 评论 -
Ubantu16.04重装NVIDIA驱动
参考博文请点击链接前言: 当因为某些原因使得你的系统无法正常驱动,如果关机重启后仍然无法正常使用,这时候你就需要重装NVIDIA驱动了。在重装之前你可以输入以下命令检查你的NVIDIA:nvidia-smi 当出现以下错误时,就表明它已经无法使用了,下面开始重装系统吧!准备细节:>>找一台同样使用ubantu16.04系统的电脑,需要在同一个...原创 2018-10-08 11:51:07 · 473 阅读 · 0 评论 -
ubantu16.04+CPU+python2.7+caffe(+center_loss)利用draw_net.py绘制模型【模型可视化】
一,draw_net.py文件,是caffe自带的python脚本文件,主要为了绘制出caffe算法训练出的模型。以下是整个绘制过程,以及绘制过程中遇到的问题和解决的办法:1,当首次执行自己创建的脚本文件时遇到protobuf包的缺失,脚本文件drawnet.sh贴在下方:#!/usr/bin/env shpython draw_net.py face_deploy.prototx...原创 2018-09-04 18:36:58 · 353 阅读 · 0 评论 -
Ubantu16.04 install pycharm
This is a manual installation process, for this installation, you just need to find it and install it, simply uncompress it into a directory with your appointed.Step1: Download PyCharm This...原创 2018-08-24 06:24:31 · 332 阅读 · 0 评论 -
The version processing of python2.7&python3.5 based on Ubantu16.04 system
1, In general, the default version of Ubantu16.04 is Python2.7. When you install some libraries with pip, such as numpy and openCV, the default path of libraries is Python2.7. this is because the pip ...原创 2018-09-04 19:07:23 · 288 阅读 · 0 评论 -
Ubantu16.04+CPU+opencv3.2.0+caffe 环境搭建及make时出现的bug和解决方法
前言: 本人先声明一下环境搭建所用到工具的版本号: ubantu —— 16.04 opencv —— 3.2.0 gcc —— 5.4.0 protoc —— 2.6.1 本人先前一直用的CUDA8.0+CUDNN编译的caffe(第一篇blog写的就是),本篇blog主要用CPU对此进行编译,编译过...原创 2018-08-22 19:41:37 · 678 阅读 · 0 评论 -
ubantu16.04 install sogoupinyin
First, you should go to this official link below and select the version you need to downloads.https://pinyin.sogou.com/linux/like this:Open a terminal with " Ctrl+Alt+t " and follow these comm...原创 2018-08-16 11:16:40 · 235 阅读 · 0 评论 -
ubantu16.04 install git
Step1: sudo apt-get install openssh-sever sudo apt-get install gitStep2:cd home/ls -a please use the above command to check .ssh file exists or not, if this file is exists, continue with t...原创 2018-08-18 18:58:06 · 359 阅读 · 0 评论 -
ubantu16.04 install sublime text3
There are two ways to install sublime.1,You can use wget to install sublime, open your terminal and use this command:wget http://download.sublimetext.com/sublime_text_3_build_3126_x64.tar.bz2...原创 2018-08-18 18:57:56 · 332 阅读 · 0 评论 -
Ubantu16.04+CUDA8.0+CUDNN+Python环境下安装caffe避坑过程
第一次用CSDN下撰写博客,也只是做一个笔记方便以后查看,参考的安装链接以超链接和网址的方式引用在文中,具体过程如下:参考 此次caffe安装是在有GPU+cuda8.0环境下进行的。1.电脑配置及软件说明在按照以下方法搭建caffe环境时,需要提前配置好以下环境,否则坑会多到抓狂1).前提在Ubuntu 16.04 x64系统下搭建(不再多说)2).我用的是GPU处理器!!...原创 2018-07-13 14:11:40 · 418 阅读 · 0 评论