conda conda-libmamba-solver file libarchive

Mac终端-bash No such file or directory以及执行操作时候command not found

问题记录,感谢参考博主分享 我们可以通过搭建临时路径的方式来找到bug。 我在调试Java环境的时候,在已经配好Java PATH的时候,错误的将当前的版本删除了,以至于我们找不到当前的版本了。 很显然,我们之前用过的vim操作,发生了一些冲突。 说明你的.bash_profile文件修改错误。 1 ......
终端 directory command 时候 found

VSCode 配置 Conda 环境

VSCode 下载 Python 插件: ![](https://img2023.cnblogs.com/blog/3249198/202308/3249198-20230822112246552-1594978123.png) 在 VSCode 中使用 CTRL+P 打开搜索,然后输入 `> se ......
环境 VSCode Conda

怎么解决“/usr/bin/ld: cannot find -lz: No such file or directory”

这个错误是链接器无法找到所需的库文件 `-lz`(通常是 zlib 库)导致的。`-lz` 是编译器告诉链接器需要链接 zlib 库的标志。 解决这个问题的方法是确保系统中安装了 zlib 库以及相关的开发包。在大多数 Linux 发行版中,你可以使用包管理工具来安装 zlib 库。例如,在 Ubu ......
directory cannot find file such

isolate python env with conda

recently I tried an amazing langchain+LLM project named localGPT and reliazed that I need to review some basic practical knowledge of python.(I might ......
isolate python conda with env

mysql 8 - linux 安装后 java 调用报错 SQLException: Temporary file write failure

完整报错 Cause: java.sql.SQLException: Temporary file write failure. ; uncategorized SQLException; SQL state [HY000]; error code [1878]; Temporary file wr ......
SQLException Temporary failure mysql linux

内核版本升级故障之shell脚本进程exe_file denrty名称问题

问题背景: 操作系统升级内核版本之后,其中一个自研内核模块获取shell脚本进程的exe_file->dentry->d_iname名称异常。 问题原因: 现网升级操作系统之后,没有重启系统,导致所有shell进程的exe_file->dentry->d_iname名称多出几个字符,导致匹配进程名称 ......
内核 脚本 exe_file 进程 故障

iwebsec-文件包含 09 file://伪协议利用

## 01、题目分析 程序开发人员通常会把可重复使用的函数写到单个文件中,在使用某些函数时, 直接调用此文件,而无须再次编写,这种调用文件的过程一般被称为文件包含。 在包含文件的过程中,如果文件能进行控制,则存储文件包含漏洞 file://读取本地文件,注意后面跟的是服务器绝对路径的文件 ## 02 ......
iwebsec 文件 file 09

Convert excel file to csv

/** Convert excel file to csv */ public function excel_to_csv() { ini_set('max_execution_time','0'); ini_set('memory_limit', '1G'); $xls_file = storag ......
Convert excel file csv to

OceanBase-系统回收日志参数验证enable_syslog_recycle和max_syslog_file_count

作者:刘书盛 热衷技术分享、编写技术文档 原创作品 oceanbase 数据库 原创内容未经授权不得随意使用、转载请联系小编并注明来源,谢谢! 1、参数介绍 enable_syslog_recycle 用于是否打开记录启动前的旧日志的开关 max_syslog_file_count 用于设置在回收日 ......

npm加参数--host启动报错 Could not auto-determine entry point from rollupOptions or html files and there are no explicit optimizeDeps.include patterns. Skipping dependency pre-bundling解决方法

参考:https://blog.csdn.net/qq_41664096/article/details/118961381 使用以下命令启动npm只能本机访问 ``` npm run dev ``` 如果需要网络访问则需要加参数--host ``` npm run dev --host 0.0.0 ......

error while loading shared libraries: libxxx.so.0: cannot open shared object file: No such file or directory

# 原因 编译的时候指定的动态库,没有在运行时查找的目录中,找不到对应的动态库 # 解决方法 运行时,指定动态库搜索的路径 ``` export LD_LIBRARY_PATH=/xxx/lib:$LD_LIBRARY_PATH ``` ......
shared file directory libraries loading

nginx报错: nginx: [error] open() "/opt/nginx/nginx.pid" failed (2: No such file or directory) 解决

出现故障的原因: nginx: [error] open() "/opt/nginx/nginx.pid" failed (2: No such file or directory) 服务器重启后,重新启动nginx报错 nginx.pid 这个文件找不到了! 因为每次重新启动系统,nginx.pi ......
nginx quot directory failed error

apache开启php的伪静态模式,出现No input file specified

Thinkphp教程中提供的APACHE伪静态模式出现No input file specified, 打开.htaccess 在RewriteRule 后面的index.php教程后面添加一个“?” 完整代码如下.htaccess RewriteEngine on RewriteCond $1 ! ......
静态 specified 模式 apache input

关于FIle笔记

File.separator: File.separator 的作用相当于 ' \ ' 在 windows 中 文件文件分隔符 用 ' \ ' 或者 ' / ' 都可以 但是在 Linux 中,是不识别 ' \ ' 的,而 File.separator 是系统默认的文件分隔符号,在 UNIX 系统上 ......
笔记 FIle

unable to open database file , EF生成SQLite数据库

前言: 记录下,忘了再回头看看。 unable to open database file 错误 如果使用EF生成SQLite数据库,发现报出错误 unable to open database file ,请检查下 “存放 SQLite 数据文件的文件夹是否存在” ......
database 数据库 数据 unable SQLite

python3-输入输出,File, OS, 错误和异常

1. 输入输出, 1.1 输出 表达式语句 print() 函数。 第三种方式是使用文件对象的 write() 方法, 标准输出文件可以用 sys.stdout 引用。 输出格式美化 如果你希望输出的形式更加多样,可以使用 str.format() 函数来格式化输出值。 如果你希望将输出的值转成字符 ......
错误 python3 python File OS

linux file命令查看文件类型

在linux系统中,linux是不根据后缀名识别文件类型的,所以使用file命令查看文件的类型。 ``` [root@node5 ~]# file /etc/shadow /etc/shadow: ASCII text [root@node5 ~]# file /etc /etc: director ......
命令 类型 文件 linux file

JavaScript File Viewer All In One

# JavaScript File Viewer All In One > 开发一款 js 文件查看器(代码高亮,格式化,行号) `chrome://extensions/` ## JSON Viewer https://chrome.google.com/webstore/detail/json- ......
JavaScript Viewer File All One

删除windows版Adobe Photoshop (Btea)的Creative Cloud Files文件夹快捷方式

计算机\HKEY_USERS\S-1-5-21-3673781915-3232438367-201350203-500\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace 我的电脑是win11,其中的S-1-5-2 ......
文件夹 Photoshop Creative windows 方式

conda命令

# conda常用命令 - #### 创建虚拟环境 ```python conda create -n 环境名称 python=3.8 ## conda create -n test python=3.9 ``` - #### 查看所有环境 ```python conda env list cond ......
命令 conda

ImportError: libssl.so.1.1: cannot open shared object file: No such file or directory

## paddlespeech安装出现的问题 操作系统Ubuntu ImportError: libssl.so.1.1: cannot open shared object file: No such file or directory ![](https://img2023.cnblogs.co ......
file ImportError directory libssl cannot

Docker安装Redis错误Reading the configuration file, at line 416 >>> 'locale-collate ""' Bad directive or wrong number of arguments

docker安装redis报错*** FATAL CONFIG FILE ERROR (Redis 7.0.12) *** Reading the configuration file, at line 416 >>> 'locale-collate ""' Bad directive or wro... ......

【上传文件时异常】The field file exceeds its maximum permitted size of 1048576 bytes.

1、背景描述 本项目是个spring boot 项目,需要文件上传,上传的是一个 pdf文件,大小是5MB,报错内容如下: Caused by: org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededEx ......
permitted 1048576 exceeds maximum 文件

Conda_使用和常用的命令

###conda A system-level, binary package and environment manager Anaconda和Miniconda都是Continuum Analytics的开源项目,用于管理Python的环境和包 Anaconda是一个包含了conda、Pytho ......
命令 常用 Conda

Git常见报错:Your local changes to the following files would be overwritten by merge

### 1、报错原因 该报错在git pull时出现,一句话解释就是你在本地改动了代码但是还没有提交,此时再拉取最新代码,远程代码和你当前的本地代码发生冲突!(注意有冲突时才会提示,如果没有冲突,则git pull成功,因为git pull实质上就是一个远程分支merge到本地分支过程。 ### 2 ......
overwritten following changes local files

library initialization failed - unable to allocate file descriptor table - out of memory 问题处理

1、修改docker服务启动配置文件 # vim /usr/lib/systemd/system/docker.service ... [Service] ... ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/con ......

不需要换行符时 使用file.read().splitlines()

with open("file.txt", "r") as file: lines = file.readlines() print(lines) # ['Line 1\n', 'Line 2\n', 'Line 3\n'] with open("file.txt", "r") as file: c ......
换行符 splitlines file read

致命错误:jemalloc/jemalloc.h:No such file or directory

学习自:redis 安装报错 jemalloc/jemalloc.h: No such file or directory 正确解决方案_风吹风铃动的博客-CSDN博客 原因 第一次执行make时由于某些异常(大部分情况是由于gcc未安装),然后在安装gcc后再次make,就会报错致命错误:jema ......
jemalloc directory 错误 file such

The field file exceeds its maximum permitted size of 1048576 bytes.

org.apache.tomcat.util.http.fileupload.impl.FileSizeLimitExceededException: The field file exceeds its maximum permitted size of 1048576 bytes. 文件上传出现 ......
permitted 1048576 exceeds maximum field