I have installed python 3.7 alongside python 3.9 to use for tensor flow and set 3.7 as my main python version via .bashrc and the alternatives tool.
I cant seem to install tensor flow(or any python module in fact) for python3.7 no matter what command I try, for example:
python3 -m pip install tensorflow
python3.7 -m pip install tensorflow
pip3 install tensorflow
pip install tensorflow
pip3.7 install tensorflow
None of these commands work and return the error no module named pip
, I look inside ~/.local/bin
and there is: pip, pip3 and pip3.9 but no pip3.7 and then in ~/.local/lib
there is only a directory for python3.9
Also the current version (for both python -V
and python3 -V
) is 3.7.10
I'm using fedora 33 and have tried to look for packages such as python3.7-pip or pip3.7 but no luck there.