Hi there! You are currently browsing as a guest. Why not create an account? Then you get less ads, can thank creators, post feedback, keep a list of your favourites, and more!
Top Secret Researcher
Original Poster
#1 Old 16th Sep 2018 at 6:15 PM
Default 32 or 64 bit python? Does version matter?
My stupid questions:

Do I want the 32 or 64 bit python? Or does that matter since they both compile to the same intermediate or machine code?

Does the version matter? Some say 3.3, some say 3.6. Latest is 3.7.

Sims are better than us.
Advertisement
Deceased
#2 Old 16th Sep 2018 at 6:30 PM
Ideally for compiling scripts for the game you should use 3.3.5 as this is the version the game uses internally. Versions 3.6 and 3.7 can produce bytecode that is incorrectly interpreted by the older 3.3.5 Python interpreter used in the game.

ETA - Oh, 32/64 bit shouldn't matter. The bytecode produced by either will be identical.
Back to top