SarkariResultess QA Bank

ModuleNotFoundError: No module named 'requests' का सामान्य समाधान क्या है? इसका Python best-practice solution क्या है? — interview में इसका सही जवाब क्या है?

Other 0 Views Verified
ModuleNotFoundError: No module named 'requests' का सामान्य समाधान क्या है? इसका Python best-practice solution क्या है? — interview में इसका सही जवाब क्या है?
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

pip delete requests

pip delete requests
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified

import pip requests

import pip requests
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified

python requests install

python requests install
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified Correct Answer

python -m pip install requests

python -m pip install requests
Additional Explanation
उसी Python interpreter के pip से package install करें।