2

How do I fix the issue "The python version in runtime is different from the build time".

When I try to run the obfuscated file present in a folder I am getting this error.

Please help me with this!!

S Varun
  • 21
  • 1
  • 2

1 Answers1

1

According to this:

https://pyarmor.readthedocs.io/en/latest/questions.html

You are probably running Pyarmor (building your obfuscated code) with a different version than the environment where the app is running. Find out the version that runs the app and try to run Pyarmor with the same version, for example by creating an environment with that version.

Jorge
  • 1,350
  • 2
  • 10
  • 19