当前位置:网站首页>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 .
边栏推荐
猜你喜欢
随机推荐
语音自监督预训练模型 CNN Encoder 调研总结
Mysql5.7 master-slave database deployment (offline deployment)
Input stream in io stream
Angr(四)——angr_ctf
IO流中的输出流
搭建LNMP+DISCUZ论坛
Number theory --- the greatest common divisor and the least common multiple
常用类的小知识
2、 What does the unittest framework do
6.shell之正则表达式
二、unittest框架主要做什么
Configure FTP virtual user and access control
Storage, computing and distributed computing (collection and sorting is suitable for Xiaobai)
Simple addition calculator
Angr(十)——官方文档(Part1)
集合的创建,及常用方法
The ultimate summary of jsonobject parsing JSON format
Fastdfs离线部署(图文)
[untitled]
复现 ASVspoof 2021 baseline RawNet2









