How do i "pip install" a package to a specific python in "pyenv" in Ubuntu 20.04? I have two versions of python (3.8, 3.6), and i want to install for example "tensorflow" specifically to python 3.6.
Asked
Active
Viewed 22 times
0
-
Then you need to create virtual environment in python3.6, then activate it, then install tensorflow onto this environment – Anwarvic Apr 30 '20 at 17:38
-
under activating you mean the command "pyenv global 3.6"? How do i "pip install" in this environment? – Michael Maier May 01 '20 at 08:56