We have installed python 3.9 from external Link, my OS has in built python 3.6 and python3-pip for 3.6 version. If I install pip packages it will install for python 3.6 and it is not compatible for python 3.9. How to install pip3.9 ? so that i will install packages from pip3.9 command.
OS: Cent OS
I tried like this
python3.9 -m pip
python3.9: No module named pip
pipwould be installed along with the rest of the standard library for any recent Python version. Are you able to access other modules from 3.9? Did you disablepipinstallation when you built it? (Or what exactly does "from external link" mean? Somebody else's build?)/path/to/python3.9/python -m pip install abc. Another suggestion is to use Conda, which handles different python versions pretty effectively.