当前位置:网站首页>Upgrade glibc 2.29 checking LD_ LIBRARY_ Path variable... Contains current directory error solution
Upgrade glibc 2.29 checking LD_ LIBRARY_ Path variable... Contains current directory error solution
2022-07-25 10:30:00 【Haulyn5】
Complete error information :
checking LD_LIBRARY_PATH variable... contains current directory
configure: error:
*** LD_LIBRARY_PATH shouldn't contain the current directory when
*** building glibc. Please change the environment variable
*** and run configure again.
For the overall upgrade process, please refer to the following link :
Solution
First look at the environment variables LD_LIBRARY_PATH.
* echo $LD_LIBRARY_PATH Get the output :
/usr/local/cuda/lib64:
You can see that most of them are installed GPU Conflicts caused by related libraries .
It shouldn't matter to delete it for a short time , Logically, my current working directory is not in `/usr/local/cuda/lib64` , Most of the errors reported are bug.
export LD_LIBRARY_PATH=../configure --prefix=/usr/local --disable-sanity-checks
See the prompt WARNING A little scared , Saw someone upgrade GLIBC Direct system collapse .
make It will take about time 1min30s .install when 1 min 12s .

Then follow the instructions in the blog quoted at the beginning to make soft connection , Then restart jupyter kernel, Just find out import pipeline 了 . Error relief .
But don't forget to change the environment variable back .
export LD_LIBRARY_PATH=/usr/local/cuda/lib64:Here according to the beginning echo $LD_LIBRARY_PATH Modify the content after the equal sign .
边栏推荐
- Basic knapsack problem
- Mysql5.7主从数据库部署(离线部署)
- Angr(二)——angr_ctf
- Number theory -- negative Radix conversion
- 2.介绍部署LAMP平台+DISCUZ论坛
- Small knowledge of common classes
- Pow(x,n)
- 四、TestFixture测试夹具,或者测试固件
- 3. Believe you can understand! Circular statements and functions of shell scripts, arrays, bubble sorting
- VSCode Latex Workshop 设置 XeLatex 编译
猜你喜欢
随机推荐
Fastdfs offline deployment (Graphic)
6. Regular expression of shell
Angr (x) - official document (Part1)
语音自监督预训练模型 CNN Encoder 调研总结
Exception handling exception
Angr(八)——angr_ctf
Vscode latex workshop set xelatex compilation
1、 The difference between unittest framework and pytest framework
6.shell之正则表达式
4. FTP service configuration and principle
Chrome开发者工具详解
切换 shell 命令行终端(bash/zsh)后,conda 无法使用: command not found
PyTorch 对 Batch 中每个样本计算损失 Loss for each sample
Trojang attack on neural networks paper reading notes
Bug classification and grading
Strut2 form label
Angr(七)——angr_ctf
Virtual private line network deployment
复现 ASVspoof 2021 baseline RawNet2
IO流中的输出流









