Get link Facebook X Pinterest Email Other Apps August 01, 2022 How to install NVIDIA driver on RHEL 91.Install OS in UEFI mode if support by the BIOS.2. Get link Facebook X Pinterest Email Other Apps Comments
July 21, 2022 How to install Python 3.10.5 with upgrade openssl 1.1.1 Check openssl location #openssl version -d or #openssl version -a Python 3.10.5 yum update yum install openssl-devel bzip2-devel libffi-devel yum groupinstall "Development Tools" wget https://www.python.org/ftp/python/3.10.2/Python-3.10.2.tgz tar -xzf Python-3.10.2.tgz cd Python-3.10.2 ./configure --with-openssl="/usr/loca/ssl" --enable-optimizations make altinstall python3.10 -c "import sys, ssl; print(\"{:s}\n{:s}\".format(sys.version, ssl.OPENSSL_VERSION))" Read more
August 01, 2022 How to install cmake on REHL 9 1.Download source from cmake webstie. 2.#tar xzvf cmake-3.23.3.tar.gz 3.#cd cmake-3.23.3/ 4#./bootstrap 5#make -j$(nproc) 6.#sudo make install 7.#cmake --version 8.#ls /usr/local/bin Read more
Comments
Post a Comment