79236049

Date: 2024-11-29 06:45:36
Score: 1.5
Natty:
Report link

Check the capitalization of the package name In Python, package names are case - sensitive. The user used uppercase "FXCMPY" in the  pip install  command and also used uppercase "FXCMPY" when importing. One should check whether the actual package name of  fxcmpy  is "fxcmpy" (all lowercase). The correct commands may be  pip install fxcmpy  and  import fxcmpy .

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: user28540902