diff --git a/RLBotPack/Necto/Nexto_EZ/bot.py b/RLBotPack/Necto/Nexto_EZ/bot.py index 84424251..0a3929a8 100644 --- a/RLBotPack/Necto/Nexto_EZ/bot.py +++ b/RLBotPack/Necto/Nexto_EZ/bot.py @@ -5,7 +5,7 @@ from rlbot.botmanager.helper_process_request import HelperProcessRequest from rlbot.utils.structures.game_data_struct import GameTickPacket -from shared_memory import shared_memory +from multiprocessing import shared_memory import sys import os @@ -40,4 +40,4 @@ def get_helper_process_request(self): if SHOW_GUI: return HelperProcessRequest(str(Path(__file__).parent / "gui.py"), "nexto-ez", options={ "shared_memory_name": self.shared_memory.name, - }) \ No newline at end of file + }) diff --git a/RLBotPack/Necto/Nexto_EZ/gui.py b/RLBotPack/Necto/Nexto_EZ/gui.py index f2ee1f72..6033b650 100644 --- a/RLBotPack/Necto/Nexto_EZ/gui.py +++ b/RLBotPack/Necto/Nexto_EZ/gui.py @@ -3,7 +3,7 @@ from rlbot.utils.logging_utils import get_logger from pathlib import Path -from shared_memory import shared_memory +from multiprocessing import shared_memory import tkinter as tk from tkinter import ttk diff --git a/RLBotPack/Necto/Nexto_EZ/requirements.txt b/RLBotPack/Necto/Nexto_EZ/requirements.txt index 7ced3932..a3950ba7 100644 --- a/RLBotPack/Necto/Nexto_EZ/requirements.txt +++ b/RLBotPack/Necto/Nexto_EZ/requirements.txt @@ -5,7 +5,6 @@ rlbot==1.* torch==2.0.1+cpu rlgym-compat==1.0.2 numpy -shared-memory38 # This will cause pip to auto-upgrade and stop scaring people with warning messages pip