码迷,mamicode.com
首页 >  
搜索关键字:linux 源代码 编译安装 httpd    ( 183092个结果
nmcli命令行修改网络连接名称
目前在网上能找到的文章中,使用nmcli命令修改Linux系统中网卡连接的名称都是先创建新的连接,然后删除旧的连接的方式 此种方式其实完全不恰当,简直就是在浪费时间,nmcli命令本身就提供了直接修改连接名称的子命令"connection.id"。 例如有如下网卡连接名称:"Wired connec ...
分类:其他好文   时间:2021-07-29 16:16:41    阅读次数:0
TypeError: ('Keyword argument not understood:', 'input')
源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:其他好文   时间:2021-07-28 21:23:54    阅读次数:0
TypeError: __init__() missing 1 required positional argument: 'units'
源代码: x = Dense(output_dim=NB_CLASS, activation='softmax')(x) 错误提示: 修正: x = Dense(uints=NB_CLASS, activation='softmax')(x) 代码运行成功。 ...
分类:其他好文   时间:2021-07-28 21:23:40    阅读次数:0
[Linux]Shell编程【待续】
1 获取当前脚本所处目录路径 #!/bin/bash work_dir=$(cd $(dirname $0);pwd) echo $work_dir ...
分类:系统相关   时间:2021-07-28 21:18:02    阅读次数:0
Linux系统资源查看
1. 🍎vmstat查看监控系统资源状态 vmstat [刷新延时 刷新次数] eg: vmstat 1 3 procs: 进程信息字段 r: 等待运行的进程数,数量越大,系统越繁忙; b: 不可被唤醒的进程数量,数量越大,系统越繁忙; memory: 内存信息字段 swpd: 虚拟内存的使用情况 ...
分类:系统相关   时间:2021-07-27 17:39:56    阅读次数:0
[Linux]Linux发展历程
继上个月算是**相对彻底地**弄懂了这个底层计算机硬件——**CPU架构**与**计算机芯片**的问题:[[Linux]CPU架构/指令集:RISC / CISC | arm | amd | X86/i386 | aarch64](https://www.cnblogs.com/johnnyzen/ ...
分类:系统相关   时间:2021-07-27 17:34:44    阅读次数:0
CentOS7安装Chrome及驱动
目录 安装Chrome 安装Chrome驱动程序 环境:CentOS Linux release 7.4.1708 (Core) 安装Chrome 下载安装包: wget https://dl.google.com/linux/direct/google-chrome-stable_current_ ...
分类:其他好文   时间:2021-07-27 17:32:34    阅读次数:0
pytest内置fixture之pytestconfig
前言 pytestconfig是pytest的一个内置fixture,可以获取上下文,它的作用跟 request.config 是一样的,可以获取配置对象。 pytestconfig的源代码 @fixture(scope="session") def pytestconfig(request: Fi ...
分类:其他好文   时间:2021-07-26 16:56:21    阅读次数:0
FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。
源代码: train_dir = os.path.join(base_dir, 'train') os.mkdir(train_dir) 错误提示: FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。 修改代码: train_dir = os.path. ...
分类:Windows程序   时间:2021-07-26 16:53:37    阅读次数:0
国产计算框架Mindspore1.3.0 gpu源代码中的cmake文件存在问题(bug),openmpi的url错误,导致不能正常编译——成功解决mindspore-gpu-1.3.0版本不能从源代码中编译的问题
mindspore 的 r1.3 分支 在gpu方式编译下存在问题,无法编译,具体编译结果参考: https://www.cnblogs.com/devilmaycry812839668/p/15054624.html 编译时会报错,提示就是使用cmake自动编译mindspore-r1.3-gpu ...
分类:Web程序   时间:2021-07-26 16:51:54    阅读次数:0
183092条   1 2 3 4 ... 18310 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!