- 1
I need some help to install modules in python
Import os From os import system system(âpip install moduleâ) BUT THE OUTPUT TELLS AFTER THE INSTALLATION THAT THIS MODULE IS NOT INSTALLED
1 RĂ©ponse
+ 2
I think this problem is related to virtual environment.
Use sys.executable to ensure that you will call the same pip associated with the current runtime.
refer : https://stackoverflow.com/a/50255019