啥也没写
发布时间:2021-12-23 11:47:25
安装:注:所有github.com都要加上httpsgit clone github.com/vulsio/go-cve-dictionary.gitcd go-cve-dictionary/go build下载历年的NVD./go-cve-dictionary fetch nvd./go-cve-dictionary --bind="0.0.0.0" servercd ..git clone github.com/vulsio/goval-dictionary.gitcd goval-dictionarygo mod tidygo .........【阅读全文】
发布时间:2021-12-09 10:01:00
FerretDB,类mangodb数据库,后端使用postgresql安装先安装postgresql14需要go.1.18,现在正式版是1.17.4,需要把master自己编译一次git clone github.com/FerretDB/FerretDB.gitcd FerretDB/root/src/go/bin/go mod tidycd tools && /root/src/go/bin/go mod tidy &&go generate -tags=tools -xcd ../root/src/go/.........【阅读全文】
发布时间:2021-12-07 15:09:28
安装模块pip install qiniu点击(此处)折叠或打开# -*- coding: utf-8 -*-from qiniu import QiniuMacAuthimport requests, json#填写七牛账户的akskaccess_key = "xx"secret_key = "OO"def get_qvm():.........【阅读全文】
发布时间:2021-11-25 13:25:01
jenkins做增量是从日志里面读取的,结果发现中文乱码,需要全局配置#git config --global core.quotepath false # 显示 status 编码#git config --global gui.encoding utf-8 # 图形界面编码#git config --global i18n.commit.encoding utf.........【阅读全文】
发布时间:2021-11-22 23:19:20
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.conda不是系统环境中的python,需要添加到export PATH="/usr/local/anaconda3-2020.11/bin:$PATH"#进入base虚拟环境source activateconda env list#进入tensorflow虚拟环境conda activate tensorflow#退出tensorflowco.........【阅读全文】