There is my code
env = make_atari_env(enviroment_name, n_envs=1, seed=0)
env = VecFrameStack(env, n_stack=4)
model = A2C.load('Training/Saved Models/A2C_Breakout_Model', env)
evaluate_policy(model, env, n_eval_episodes=10, render=True)
When I was using gym.make() I could just pass render_mode = 'human' and all would work. But in this case there is no such parameter.
Tried to use gym.make() instead of make_atari_env occured error