环境配置
God_forths
热爱技术,喜欢收集新的思路和想法,热衷解决问题,欢迎交流!
展开
-
error: can‘t find Rust compiler
问题描述:在arm架构下安装pip包时报错:error: can't find Rust compilerERROR: Failed building wheel for tokenizers参考如下:https://github.com/huggingface/transformers/issues/2831#issuecomment-600141935Install Rustlinkcurl --proto '=https' --tlsv1.2 -sSf https:...原创 2021-12-27 14:29:28 · 3240 阅读 · 1 评论 -
neo4j docker部署
IMAGE地址:https://hub.docker.com/_/neo4j部署命令:docker run -d -p 7474:7474 -p 7687:7687 -v $HOME/neo4j/data:/data neo4j浏览器访问:http://<IP>:7474即可。默认用户名密码:neo4j/neo4j指定--env=NEO4J_AUTH=none取消用户名密码登录。...原创 2021-12-08 17:20:44 · 747 阅读 · 0 评论 -
win10 miniconda 激活虚拟环境失败
相关错误:...Scripts\activate.ps1,因为在此系统上禁止运行脚本。解决方案:1.打开设置--->>>更新和安全--->>>开发者选项2.勾选 PowerShell下的应用以下设置以执行PowerShell脚本,应用即可。...原创 2021-08-24 10:42:38 · 697 阅读 · 0 评论 -
error: Microsoft Visual C++ 14.0 is required
在win10下使用miniconda虚拟环境安装python3.6包时出错,提示需要14.0或更高版本。解决方案:官方下载安装文件:https://download.visualstudio.microsoft.com/download/pr/9efbe138-ff42-4deb-95c9-1d78cdc1f98b/8138a3ef037d188564329800fca2f5567a1a9dec74c4ba66f4ee19d075594926/vs_BuildTools.exe下载完成后,双原创 2021-08-24 10:38:17 · 128 阅读 · 0 评论 -
Milvus以图搜图单机部署
参考:https://hub.fastgit.org/milvus-io/bootcamp/tree/master/solutions/reverse_image_search/quick_deploy1. Start Milvus v2.01.wget https://raw.githubusercontent.com/milvus-io/milvus/master/deployments/docker/standalone/docker-compose.yml -O docker-compos原创 2021-07-29 17:50:55 · 475 阅读 · 0 评论 -
GPU及docker环境部署Ubuntu linux
nvidia驱动:https://linuxconfig.org/how-to-install-the-nvidia-drivers-on-ubuntu-18-04-bionic-beaver-linux#h7-automatic-install-using-ppa-repository-to-install-nvidia-beta-driversnvidia-docker2:https://...原创 2019-03-12 15:02:21 · 447 阅读 · 0 评论 -
win10下压缩的zip文件在linux下解压中文乱码
在Ubuntu 20.04.2 LTS 下,使用如下命令解压后,无乱码。unzip -O CP936 <xxx.zip>原创 2021-07-26 12:00:16 · 215 阅读 · 0 评论 -
Win10 Mysql安装后每日0点弹窗
解决方法:这是因为默认开启了自动更新产品目录,打开MySQLInstaller然后点击设置,取消勾选就可以了。原创 2021-07-25 22:14:46 · 1914 阅读 · 1 评论 -
Python tkinter ubuntu安装
问题:no module named "tkinter"解决方法:sudo apt install python3-tksudo apt install tk-dev验证:python3 -m tkinter原创 2021-07-22 11:38:39 · 1333 阅读 · 2 评论 -
Win10子系统Ubuntu20.04安装及配置
在win10下安装Ubuntu20.04子系统1.安装第一步:打开 “设置” >>>“更新和安全”>>>“开发者选项”,选择为“开发人员模式”。第二步:打开“设置”,直接搜索“windows功能”,打开“启用或关闭Windows功能”页面,选择“适用于Linux的Windows子系统”,并且勾选上“虚拟机平台”。点击“确定”即可。第三步:打开微软应用商店,找不到可以在搜索框中搜索“Microsoft Store”,打开即可,搜索“Linux”找到“Ubun原创 2021-04-24 17:47:26 · 1263 阅读 · 0 评论 -
docker 启动 mysql
1.mysql镜像官方地址https://hub.docker.com/_/mysql2.启动命令1.选择mysql版本,此处使用5.7版本docker pull mysql:5.72.指定用户密码,挂载宿主机目录,暴露端口docker run -itd --name <名称>-v <宿主机路径>:/var/lib/mysql/ -p<指定端口>:3306 -e MYSQL_ROOT_PASSWORD=<指定密码>mysql:5.7...原创 2020-09-27 17:39:48 · 144 阅读 · 0 评论 -
Dockerfile 配置
参考链接:https://docs.docker.com/engine/reference/builder/通过写好的Dockerfile可以自动构建Docker镜像。 Dockerfile中包含了构建一个镜像可能用到的所有命令。具体示例参考:命令docker build -t <name:tag> -f /path/to/a/Dockerfile <context>创建镜像时需要Dockerfile和一个指定路径 这个路径是一个明确指出的宿主局文件目录或者一原创 2020-07-07 19:25:32 · 275 阅读 · 0 评论 -
apparmor: config provided but apparmor not supported
ubuntu18.04 卸载docker后重装,执行docker run hello-world报错:参考链接:https://gitmemory.com/issue/docker/for-linux/503/496092717造成此问题的原因可能是由于旧版本的docker卸载不干净,部分软件版本不一致导致。whereis runc #如果有多个结果,可以尝试删掉不匹配的run...原创 2019-12-25 16:56:02 · 407 阅读 · 0 评论 -
docker-compose yaml
安装docker-composehttps://docs.docker.com/compose/install/在ubuntu上安装docker-composesudo curl -L "https://github.com/docker/compose/releases/download/1.25.0/docker-compose-$(uname -s)-$(uname -m)...原创 2021-07-22 17:59:56 · 108 阅读 · 0 评论 -
docker ubuntu16.04 设置时区
执行 tzselect时报错:tzselect/usr/bin/tzselect: line 180: /usr/share/zoneinfo/iso3166.tab: No such file or directory/usr/bin/tzselect: time zone files are not set up correctly此时执行apt-get instal...原创 2019-12-09 17:49:11 · 1246 阅读 · 0 评论 -
Ubuntu Erlang源码编译方式安装
github地址:https://github.com/erlang/otp.git执行如下命令即可:sudo apt install ncurses-dev autoconf libssl-dev unixodbc unixodbc-dev libwxgtk3.0-dev install libxml2-utils xsltproc fopgit clone https://gi...原创 2019-11-06 17:49:40 · 395 阅读 · 0 评论 -
Ubuntu16.04 nodejs环境搭建
下载地址:https://nodejs.org/en/download/nodejs GitHub地址:https://github.com/nodejs/node安装文档地址:https://github.com/nodesource/distributions命令如下,以 v10 为例,其他可参考文档:# Using Ubuntucurl -sL https://deb....原创 2019-10-22 15:15:07 · 266 阅读 · 0 评论 -
Ubuntu16.04-18.04 安装docker
1、创建用户,赋予sudo免密权限。sudo useradd -d /home/forths -m forthssudo passwd forthsecho "forths ALL = (root) NOPASSWD:ALL" | sudo tee /etc/sudoers.d/forthssudo chmod 0440 /etc/sudoers.d/forthssudo usermo...原创 2019-04-16 15:51:10 · 510 阅读 · 0 评论 -
CentOS7.5基本操作
1.yum源mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 备份旧的,修改成国内源。wget下载源#163的源:wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Ba...原创 2019-04-15 11:40:57 · 822 阅读 · 0 评论 -
ubuntu16.04 python opencv install
sudo apt updatesudo apt install pythonsudo apt install python-devsudo apt install python-pippip install opencv-python# 将python换成python3即可升级pippip install --upgrade piphash pipopenc...原创 2019-04-03 09:56:48 · 658 阅读 · 0 评论 -
pip 更新到清华源
链接:https://mirrors.tuna.tsinghua.edu.cn/help/pypi/pypi 镜像使用帮助pypi 镜像每 5 分钟同步一次。临时使用pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package注意,simple 不能少, 是 https 而不是 http设为默认...原创 2019-04-03 10:13:44 · 6681 阅读 · 0 评论 -
ubuntu16.04 locale 配置中文
查看语言支持 locale -aroot@dab34b837a8b:/# locale -aCC.UTF-8POSIX没有需要的中文语言安装 sudo apt-get install language-pack-zh-hans 简体(繁体为anguage-pack-zh-hant)更新对应locale文件dpkg-reconfigure locales./bas...原创 2019-04-03 12:22:12 · 705 阅读 · 0 评论 -
CentOS7 install docker-ce
卸载旧的dockersudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ d...原创 2019-04-16 15:50:12 · 289 阅读 · 0 评论 -
ubuntu16.04 mysql8.0 安装及设置远程连接
安装官网地址:https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/1.Go to the download page for the MySQL APT repository athttps://dev.mysql.com/downloads/repo/apt/wgethttps://dev.mysql.com/get...原创 2019-04-22 11:37:42 · 1113 阅读 · 0 评论 -
ubuntu16.04 安装tesseract4.0
参考地址:https://github.com/tesseract-ocr/tesseracthttps://github.com/tesseract-ocr/tesseract/wiki/Compiling#linuxhttps://launchpad.net/~alex-p/+archive/ubuntu/tesseract-ocr?field.series_filter=xenial...翻译 2019-05-08 10:11:41 · 462 阅读 · 0 评论 -
ubuntu18.04 2T以上硬盘分区并挂载
创建挂载点sudo mkdir 目录名称查看设备sudo fdisk -l挂载sudo mount 要挂载的设备 创建的目录卸载sudo umount 设备或目录名称4T移动硬盘分区parted工具1.找到要分区的设备sudo parted -l2.开始分区sudo parted /dev/sde3.删除当前存在的分区rm 1rm...原创 2019-04-25 15:34:02 · 7860 阅读 · 0 评论 -
ubuntu16.04 中文设置
方法一如果执行 locale -a 其中不包含zh_CN.utf8语言包,则执行如下命令:locale-gen zh_CN.utf8如果locale-gen命令不存在:sudo apt install locales安装zh_CN.utf8字库后配置环境变量:编辑 ~/.bashrc 文件,添加如下两行即可:export LANG=zh_CN.utf8ex...原创 2019-06-13 11:56:59 · 2907 阅读 · 0 评论 -
Ubuntu 16.04 Nginx 配置登录访问
sudo apt-get install apache2-utilssudo htpasswd -c /etc/nginx/.htpasswd username输入密码,提示如下:New password:Re-type new password:Adding password for user exampleuserhtpaswd的.htpasswd文件格式如下:login:...原创 2018-09-06 16:22:17 · 872 阅读 · 0 评论