Is Player loading numpy automatically? If I add
np.random.seed(423)
to my python script it does not throw and error even though I did not load numpy.
But if I add
numpy.random.seed(423)
or
random.seed(423)
then it crashes (as expected) since those modules haven't been loaded.
This suggest that some part of Player is loading numpy.
Is Player loading numpy automatically? If I add
np.random.seed(423)to my python script it does not throw and error even though I did not load numpy.
But if I add
numpy.random.seed(423)or
random.seed(423)then it crashes (as expected) since those modules haven't been loaded.
This suggest that some part of Player is loading numpy.