ICode9

精准搜索请尝试: 精确搜索
  • pip安装失败解决以及crypto库安装注意点2022-07-08 11:35:50

    1.使用crypto相关的库 pycrypto,pycrytodome和crypto是一个东西,crypto在python上面的名字是pycrypto它是一个第三方库,但是已经停止更新三年了,所以不建议安装这个库; pycryptodome,它是pycrypto的延伸版本,用法和pycrypto 是一模一样的;   直接安装: pip install pycryptodome;

  • Maven工具中的clean、compile、install、package、test的作用2022-07-08 02:00:19

    Maven工具可以进行clean、compile、install、package、test等操作,但是这些操作有什么用呢,以下面的p2p-exterface为例说明一下,pwp-exterface工程目录如下: 点击compile: 只是简单的编译,不打包 点击clean: 清除编译完成的target目录 点击package: 编译完成之后打jar包,但是不会把打

  • python-virtualenv虚拟环境2022-07-07 13:43:40

    安装virtualenv包: pip install virtualenv 在哪个打开命令行,就在哪里生env ```python -m venv test_env`` 激活命令 activate 退出命令 deactivate virtualenvwrapper-win Windows下 pip install virtualenvwrapper-win Linux下 pip install virtualenvwrapper 查看虚拟环境 work

  • vue中install方法2022-07-07 12:36:37

    vue提供install可供我们开发新的插件及全局注册组件等install方法第一个参数是vue的构造器,第二个参数是可选的选项对象 export default { install(Vue,option){ 组件 指令 混入 挂载vue原型 } } 全局注册组件 import PageTools from '@/components/PageTools/pageTools.

  • pytest+allure安装2022-07-06 21:34:21

    pytest+allure安装 安装依赖包 sudo pip3 install pytest allure-python-commons allure-pytest sudo apt install openjdk-8-jdk npm 安装npm对应版本6.4.1(node 10.15.2) 查询当前版本 npm -v node -v 下载地址:https://docs.deepin.com/d/27c896aeb3/ 解压v6.4.1.tar.gz,并进

  • ubuntu20.04安装openMVG和openMVS2022-07-06 10:07:14

    1、安装openMVG 主要按照官方教程安装基本上不会出错: https://github.com/openMVG/openMVG/blob/develop/BUILD.md#using-openmvg-as-a-third-party-library-dependency-with-cmake 有问题可以查找: https://github.com/openMVG/openMVG/issues 主要过程: $ sudo apt-get install l

  • 【python】遇到的问题2022-07-05 22:03:22

    You should consider upgrading via the 'python -m pip install --upgrade pip' command 报错信息: “You are using pip version 10.0.1, however version 20.0.2 is available. You should consider upgrading via the ‘python -m pip install --upgrade pip’ command

  • IDEA:开发环境热部署nodejs项目2022-07-05 15:32:19

    免重启开发Nodejs项目 方式一: npm install -g nodemon 方式二: npm install -g supervisor   找到下载的文件目录,部署配置项目。 1、项目配置 2、配置上nodemon或者supervisor    3、其他配置    问题: 1、找不到全局文件位置 cmd执行npm config ls,既会显示相关路径位

  • How to install Xfce Desktop Environment in openSUSE Linux2022-07-05 13:03:46

    How to install Xfce Desktop Environment in openSUSE Linux JULY 27, 2020CIALU LINUX, OPENSOURCE Find peace of mind, stop, and find out how to install Xfce Desktop Environment on your trusted openSUSE Linux distribution. In this article, you’ll find the

  • pip安装包报错Could not find a version that satisfies the requirement pymysql (from versions: none)2022-07-05 11:32:55

    第一种可能: 这时可能需要我们升级一下pip版本,于是执行命令 python -m pip install --upgrade pip   第二种可能: 这时考虑换一个pip源 pip install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple/     第三种可能: 这时考虑是网速的原因,这时采用国内的镜像源来加速 pip i

  • hasura graphql-engine 源码构建问题2022-07-04 23:02:17

    基于centos 7 构建 安装haskell 构建工具 curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh 依赖包问题 gmp yum install -y gmp-devel pcre yum install -y pcre-devel mysql The progra

  • npm install 报错2022-07-04 10:05:51

    是因为npm版本太高了 运行 npm i npm@6 -g就可以了  

  • Mac安装指定版本的node2022-07-03 23:35:16

    https://blog.csdn.net/qq_35098526/article/details/124500666 Mac安装指定版本的node安装HomebrewHomebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。简单的一条指令,就可以实现包管理,而不用你关心各种依赖和文件路径的情况,十分方便

  • npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock2022-07-03 13:32:18

    npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock.json was generated for lockfileVersion@2. I’ll try to do my best with it!报错   根据这个报错信息可以得出,目前你电脑npm的版本是适合于lockfileVersion@1的,但是你

  • mac下用homebrew安装tree失败解决方案2022-07-02 21:33:11

    1.想用tree可以更好的查看目录结构,于是 brew install tree 发现安装失败 2.感觉可能是权限不够,于是 sudo brew install tree, 结果homebrew不支持以root的身份安装下载包 3.既然root不能去操作homebrew,那就只有给brew下附的文件目录权限赋予当前用户 sudo chown -R $(whoa

  • 升级make,安装gmp,安装mpfr,mpc2022-07-01 21:32:17

    一、预安装gcc,c++ $ yum install -y gcc gcc-c++ 把源码包上传到/usr/local/software目录 二、更新make 1. 下载make最新安装包 #到 http://ftp.gnu.org/pub/gnu/make/ 查找最新安装包 wget http://ftp.gnu.org/pub/gnu/make/make-4.3.tar.gz 2. 解压配置 tar -zxvf make-4.

  • [JetsonNano] [教程] [入门系列] [三] 搭建TensorFlow环境2022-07-01 16:00:43

    1.Miniforge&Mamba 1.安装miniforge&mamba 我们一般在PC机使用anaconda这类包管理器,但是由于jetson是arm架构CPU,所以我们要使用miniforge代替anaconda mamba是一个基于conda的C++多线程下载器,conda只能使用单线程下载,安装mamba加快conda下载速度  sudo apt update sudo apt upgr

  • 虚拟环境搭建2022-07-01 15:35:54

    目录pip永久换源虚拟环境搭建使用虚拟环境 pip永久换源 第一步:打开文件资源管理器,地址栏输入: %APPDATA% %APPDATA%可以快速到 C:\Users\电脑用户\AppData\Roaming下 第二步:创建pip文件夹,并在文件夹内新建pip.ini配置文件。 第三步:打开pip.ini,添加内容(这里使用清华源): [global] i

  • 手把手ubuntu18.04安装docker步骤2022-07-01 07:00:25

        01.业务背景     使用ubuntu18.04来安装docker         02.安装什么    安装docker-engine和安装docker-compose    03.官网地址    docker的官网:https://www.docker.com    ubuntu18.04安装docker的参考地址:    https://docs.docker.com/engine

  • python 模块2022-07-01 00:34:34

    from django.test import TestCase # Create your tests here. # Python模块 # 模块就是一个保存了Python代码的文件,模块能定义函数,类和变量,模块里也能包含可执行的代码 # # Python模块的导入 # Import 语句 # 想使用Python源文件,只需要在另一个源文件里执行import语句 # Im

  • redis服务器安装部署2022-07-01 00:04:29

     背景 Redis版本 6.2.7 服务器版本 Linux CentOS 7 64位 一、下载 下载地址:https://mirrors.huaweicloud.com/redis/ 官网: https://redis.io/download 或者直接wget在线下载 鼠标右击选择 复制链接地址 进入到Xshell控制台,进入usr/,输入wget,命令如下: [root@bda xiazai]# cd u

  • VNC2022-06-30 19:03:22

      apt install vino    sudo apt install dconf-editor    dconf write /org/gnome/desktop/remote-access/require-encryption false    settings-> Sharing->Screen Sharing    ubuntu 18 /usr/lib/vino/vino-server --display=:0    (22条消息) Ubu

  • apt 安装 包 package 命令 更新源 构建 源码 Linux Raspbian Debian Raspberry2022-06-30 10:41:58

    OS:raspbian (/ Debian / Linux) H/W: raspberry Pi 4 安装程序 两种方式: 通过包机制(一键集成打包)安装; 手动的(分步)安装: 下载源码:通过如wget、curl的下载方式,下载如tar.gz文件类型的(release、distribute状态的)源码; 或通过git clone下载源码; 解压 (如configure-make-make install的)

  • [Bluez]1.Download install Bluez on Ubuntu2022-06-29 18:36:32

    Download and Install extracted it and built it: xz -d bluez-5.64.tar.xz tar -xvf bluez-5.64.tarcd bluez-5.64 **Read the README! **It lists the dependencies and the configure switches sudo apt-get build-dep bluez fix it sudo cp /etc/apt/sources.list

  • PHP71yum安装2022-06-29 11:00:15

    rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm rpm -Uvh https://mirrors.aliyun.com/remi/enterprise/remi-release-7.rpm yum clean all && yum makecache yum install php71

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有