abden003
abden003

Reputation: 1335

Should I delete .pyc files if I copy project to new comptuer

Should I delete the .pyc files if I copy a project from one computer to another, lets say a linux machine to a windows machine? Or will it automatically correct itself.

Upvotes: 1

Views: 211

Answers (1)

dsh
dsh

Reputation: 12214

They'll be fine. They are not dependent on the OS or the hardware; they are only dependent on the Python version. Python automatically creates, and updates, them when needed.

Upvotes: 1

Related Questions