Weird bug: Failed to delete the temporary minecraft directory

Really confused as to why this is happening.
Here’s my code people:

import minerl
import gym

#import tensorflow as tf

#from time import time


def main():
    '''data = minerl.data.make(
    "MineRLNavigateDense-v0",
    data_dir="C:\\Users\\Robin\\Desktop\\deep_learning")'''
    
    done = False
    env = gym.make("MineRLNavigateDense-v0")
    obs = env.reset()
    #img = env.render(mode="rgb_array")

    

if __name__ == "__main__":
    main()

Hi @ordinaryhacker101,

Can you share any traceback for the error, and command you ran?

Quite hard to provide any direction otherwise. :sweat_smile:

Bro my error got solved; the error occured because i didnt loop the environment to run. Thanks!