当前位置:网站首页>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 .
边栏推荐
猜你喜欢
随机推荐
Erlang (offline deployment)
语音自监督预训练模型 CNN Encoder 调研总结
Angr(六)——angr_ctf
Bug分类和定级
Angr (IX) -- angr_ ctf
多线程——静态代理模式
Number theory -- Research on divisor
Angr(二)——angr_ctf
二、unittest框架主要做什么
Use of mongodb
Pytorch code template (CNN)
8. SHELL file processing Three Musketeers sed
Pow(x,n)
Open虚拟专线网络负载均衡
Configure FTP virtual user and access control
6.shell之正则表达式
2.介绍部署LAMP平台+DISCUZ论坛
Angr (VII) -- angr_ ctf
存储、计算、分布式虚拟化篇(收集整理适合小白)
Multithreading deadlock and synchronized








