repository install remote fatal

fatal: bad object refs/remotes/origin/xxx

解决方案: 1、项目的.git文件内的目录.git/logs/refs/remotes/origin/,删除该错误的本地远程分支; 2、执行git pull --rebase即可 类似错误信息例子: fatal: bad object refs/remotes/origin/xxx fatal: b ......
remotes object origin fatal refs

Advanced Installer 20.8 简易安装包制作流程

一、选择安装程序项目企业版 二、根据实际填写产品详情 三、右击应用程序文件夹添加程序文件 这里有个细节,安装完成后卸载时发现安装目录下仍保留了部分文件或者日志。如果想要卸载时完全删除文件,可以在这里进行设置。 四、切换到快捷方式,选择向导 选择要运行的主程序,添加快捷方式显示的名称。 五、选择主题, ......
简易 Installer Advanced 流程 20.8

apt --fix-broken install 这个是什么意思?

apt --fix-broken install 的意思是尝试修复系统中的软件包依赖关系问题,并尽可能安装所需的软件包。该命令可以自动处理依赖关系冲突,安装缺失的依赖项或删除不需要的依赖项。 ......
fix-broken 意思 install broken apt

Nessus 10.6 Auto Installer for macOS Sonoma (updated Oct 2023)

Nessus 10.6 Auto Installer for macOS Sonoma (updated Oct 2023) 发布 Nessus 试用版自动化安装程序,支持 macOS Sonoma、RHEL 9 和 Ubuntu 22.04 请访问原文链接:https://sysin.org/bl ......
Installer updated Nessus Sonoma macOS

E: The repository 'xxx' is not signed.

在ubuntu上安装了google chrome, 运行时有问题,删除了之后再次运行 sudp apt update 会报错 E: The repository 'http://dl.google.com/linux/chrome/deb stable InRelease' is not signe ......
repository signed 39 The not

k8s install es

# Source: elasticsearch/templates/test/test-elasticsearch-health.yaml apiVersion: v1 kind: Pod metadata: name: "elasticsearch2-csamz-test" annotations ......
install k8s k8 8s es

pip install pycrypto

pycrypto,pycrytodome和crypto是一个东西,crypto在python上面的名字是pycrypto它是一个第三方库,但是已经停止更新三年了,所以不建议安装这个库; python2下安装: pip install pycrypto1python3下安装 pip install p ......
pycrypto install pip

ubuntu install pgsql

sudo apt update; sudo apt upgrade; sudo apt install postgresql postgresql-contrib; sudo systemctl start postgresql.service https://www.digitalocean.co ......
install ubuntu pgsql

Install Redis on macOS

Use Homebrew to install and start Redis on macOS This guide shows you how to install Redis on macOS using Homebrew. Homebrew is the easiest way to ins ......
Install Redis macOS on

remotion 基于react 创建视频的框架

remotion 可以让我们直接基于react 创建视频,使用到的技术webgl,css,canvas,svg 说明 对于希望使用web 创建使用的场景这个是一个不错的选择(比如营销动画),很值得学习下 参考资料 https://www.remotion.dev/docs/https://githu ......
框架 remotion react 视频

ruby: install sass

https://www.ruby-lang.org/zh_cn/https://rubyinstaller.cn/gem install sass gem update sass sass -v sass -h ......
install ruby sass

windows 启用wsl wsl --install 操作超时

在启用或关闭Windows功能中启用Windows虚拟机监控程序平台 ......
wsl windows install

cdhit-common.h:39:17: fatal error: zlib.h: No such file or directory

001、问题 cd-hit 编译报错如下: cdhit-common.h:39:17: fatal error: zlib.h: No such file or directory 002、解决方法 yum -y install zlib zlib-devel 003、验证 [root@pc1 cd ......
cdhit-common directory common cdhit fatal

laravel进阶---repository仓库模式的使用【转】

前言在自学了一段时间的laravel之后,小编自认为对于laravel这个框架还是基本可以掌握的。但是最近看了一份实验室的项目源码之后,小编感触良多。首先别人的代码总体上给人一种既简洁明了又高大上的感觉,代码看着简单但仔细去看,有的地方小编也一时看不懂。再反过来看小编自己的代码 (写的那是啥,简直惨 ......
repository 仓库 laravel 模式

Repository模式【转】

最近开发的MVC项目使用了Repository模式。啥是Repository模式? 从图看,有一个仓库接口,一个实现了这个仓库接口的基类;然后在使用方,一方面,要声明一个继承于仓库接口的子接口,另一方面,编写一个数据库操作类,继承仓库基类,并实现这个子接口。继承仓库基类容易理解,为啥还要搞一个子接口 ......
Repository 模式

Laravel框架中如何使用 Repository 模式

若将数据库逻辑都写在model,会造成model的肥大而难以维护,基于SOLID原则,我们应该使用Repository模式辅助model,将相关的数据库逻辑封装在不同的repository,方便中大型项目的维护。 Version:Laravel 5.1.22 数据库逻辑 在CRUD中,CUD比较稳定 ......
Repository 框架 Laravel 模式

Dao和Repository,你还傻傻分不清吗?

DAO到底有没有必要? 贫血模型中的DAO或领域模型中的Repository到底有没有必要?有人认为DAO或者说Repository是充血模型的大敌,对此我无论如何也不赞同。DAO或Repository是负责持久化逻辑的,如果取消掉DAO或Repository,将持久化逻辑直接写入到model对象中 ......
Repository Dao

To install it, you can run: npm install --save svg-baker-runtime/browser-symbol

运行vue项目npm run dev命令报错 报错信息: 错误提示: To install it, you can run: npm install --save svg-baker-runtime/browser-symbol 解决: npm install --save regenerator- ......

git 报错 remote: You are not allowed to upload code

背景: 尝试推送代码到A仓库时git返回“remote: You are not allowed to upload code”,其他仓库推送代码正常。 定位: 1. 确认我已拥有仓库权限 2. 在其他服务器登录我本人gitlab账号推送代码到A仓库成功 3. 其他人可以正常推送代码到A仓库 4. ......
allowed remote upload code git

Laravel Repository 仓库模式【转】

详细: 1. Repository 模式作用和实现原理;理论MVC 分层缺点MVC 作为一种传统的分层模型已经服务过很多 WEB 应用,非常成熟。Controller 需要直接调用对应的 Model 来完成数据交互,这样不可避免的造成了强耦合,也造成了 Controller 和 Model 的臃肿一 ......
Repository 仓库 Laravel 模式

安装NVIDA驱动时,出现your appear to running an x server;please exit x before installing .for further details 这个错误

安装NVIDA驱动时,出现your appear to running an x server;please exit x before installing .for further details 这个错误 主要是由于安装远程控制lightgm 导致X-server启动。 解决办法: sudo ......
installing 错误 running details further

ESPnet Installation

https://blog.csdn.net/qq_41651719/article/details/115897162?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522169708026216800225560761%2522%252C ......
Installation ESPnet

k8s install rabbitmq

1 kubectl apply -f "https://github.com/rabbitmq/cluster-operator/releases/latest/download/cluster-operator.yml" 2 kubectl apply -f https://raw.githubu ......
rabbitmq install k8s k8 8s

npm install -g yarn 安装yarn之后提示:'yarn' 不是内部或外部命令,也不是可运行的程序或批处理文件。

操作系统:win10 node版本:v14.21.3 1:npm install -g yarn 2:yarn 报错:'yarn' 不是内部或外部命令,也不是可运行的程序或批处理文件。 3: yarn 安装在 C:\Program Files\nodejs\node_modules\corepack ......
yarn 命令 install 文件 程序

已解决ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。: 'e:\\python\\scripts\\pip.exe' Consider using the `--user` option or check the permissions.

已解决ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。: 'e:\\python\\scripts\\pip.exe' Consider using the `--user` option or check ......
permissions the Consider WinError packages

src/param.cpp:30:26: fatal error: gsl/gsl_blas.h: No such file or directory

001、问题:安装gemma软件报错 src/param.cpp:30:26: fatal error: gsl/gsl_blas.h: No such file or directory 002、解决方法, 安装gls a、官网下载 http://mirrors.ustc.edu.cn/gnu/g ......
directory gsl gsl_blas param fatal

报错Intel MKL FATAL ERROR: Cannot load libmkl_core.so.的一种解决方法

问题 今天上80服务器跑mdistiller的代码时,意外发现torch、numpy都不能用了T_T 以torch为例,出现如下报错情况 以numpy为例,出现如下报错情况 我们先看看报错信息,这个报错来自Inter MKL。Inter MKL全称是The Intel Math Kernel Lib ......
libmkl_core 方法 Cannot libmkl Intel

otImplementedError: "sortBed" does not appear to be installed or on the path, so this method is disabled.

NotImplementedError Traceback (most recent call last) Cell In[10], line 5 3 s = pybedtools.BedTool(args.starrseq[0]).filter(lambda x: float(x[9]) > 1. ......

ERROR: Could not install packages due to an OSError: [Errno 2] 没有那个文件或目录: '/anaconda3/envs/mydlenv/lib/python3.8/site-packages/fastjsonschema-2.16.2.dist-info/METADATA

ERROR: Could not install packages due to an OSError: [Errno 2] 没有那个文件或目录: '/home/software/anaconda3/envs/mydlenv/lib/python3.8/site-packages/fastjsons ......

Install docker on CentOS _base China

yum remove docker // 卸载docker yum install -y yum-utils // 扩展和增强 yum 包管理器 # 配置docker安装源 yum-config-manager --add-repo https://download.docker.com/linux ......
Install CentOS docker China base