-1

I'm on mac trying to install the module "arcpy" with pip. I use this command:

pip install --user arcpy

And I get this error:

  Could not find a version that satisfies the requirement os (from versions: )
No matching distribution found for arcpy

Can someone tell me the problem?

janpolroik
  • 7
  • 1
  • 4

1 Answers1

1

Update: Original question was asking about os package and then it was replaced with arcpy. To summarize:

  • os module is already part of the Python core library. You can just import it in your Python code. External os package does not exist in Python package index.

  • arcpy is not a free software and cannot be installed with pip

Maxim Kukhtenkov
  • 734
  • 1
  • 7
  • 20