当前位置:网站首页>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 .
边栏推荐
- Pytorch 张量列表转换为张量 List of Tensor to Tensor 使用 torch.stack()
- 测试计划、测试方案
- 升级 GLIBC 2.29 checking LD_LIBRARY_PATH variable... contains current directory error 解决方案
- Angr(八)——angr_ctf
- Research summary of voice self-monitoring pre training model CNN encoder
- 4. FTP service configuration and principle
- Supervisor deployment (offline deployment requires downloading the deployment package in advance)
- Simple addition calculator
- 5.NFS共享服务和ssh远程控制服务
- 1. Shell programming specifications and variables
猜你喜欢
随机推荐
9.shell文本处理三剑客之awk
Array static initialization, traversal, maximum value
Selenium waits for the occurrence of elements and the conditions under which the waiting operation can be performed
Mysql5.7主从数据库部署(离线部署)
4. FTP service configuration and principle
集合的创建,及常用方法
Yiwen society, three necessary packet capturing tools for hackers
Trojaning Attack on Neural Networks 论文阅读笔记
6. Regular expression of shell
Attention is all you need paper intensive reading notes transformer
Ansible Deployment Guide
Number theory --- the greatest common divisor and the least common multiple
Erlang(离线部署)
三、unittest测试用例五种运行方式
Small knowledge of common classes
平凡人的一生的意义是什么?
配置FTP虚拟用户及访问控制
3.跟你思想一样DNS域名解析服务!!!
IO流中的输出流
FRP reverse proxy deployment









