1

pip install json fails on ubuntu and gives errors like this.

I am trying buildozer android debug on my Ubuntu machine and I have a dependency json. The problem is, buildozer is internally trying to install json and it is giving the exact same error:

RuntimeError: Package 'json' must not be downloaded from pypi

My buildozer is configured and I have no issues when I run it withour json.

Community
  • 1
  • 1
Abhipso Ghosh
  • 457
  • 1
  • 6
  • 21

1 Answers1

2

Since Json is built-in (as stated in the thread you linked to) you don't have to include it as a requirement.

Just change it in your buildozer.spec and it should work.

(I know, it's probably a bit late now ^^)

Mealynn
  • 21
  • 2