How to install python package
📄 Description
💡 Examples
pe = pyenvpackage_to_install = "scipy";
command_to_install = '"' + pe.Executable + '"' + " -m pip install " + package_to_install;🔗 See also
Last updated
pe = pyenvpackage_to_install = "scipy";
command_to_install = '"' + pe.Executable + '"' + " -m pip install " + package_to_install;Last updated
[status, msg] = system(command_to_install);