Answers for "how to update pip version in cmd"

62

command to update pip

python -m pip install --upgrade pip
Posted by: Guest on February-17-2020
0

how to upgrade cmake version in ubuntu

Go to 
https://github.com/Kitware/CMake/releases

select the version that you want to install and click on that. Next copy the link
of .tar.gz file.

open terminal and write 
wget link

Example: 
wget https://github.com/Kitware/CMake/releases/download/v3.13.4/cmake-3.13.4.tar.gz

Then do this steps according to your version

1) tar zxvf cmake-3.13.4.tar.gz
2) cd cmake-3.13.4
3) sudo ./bootstrap
4) sudo make
5) sudo make install

cmake is installed. check by typing in terminal
cmake --version
Posted by: Guest on January-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language