You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in #1, updating the name of the module results into a smooth completion of the installation process. However, when running the launch_agent.py from the scripts folder it results into: ModuleNotFoundError: No module named 'wireless.agents'
, it can be noticed that the other sub-modules included in the package -such as agents- are not listed.
This can be done manually by replacing the line of code previewed above with: packages=['wireless', 'wireless.agents', 'wireless.envs', 'wireless.utils'], for instance.
Alternatively, setuptools.find_packages() can be used to fulfill the same task automatically.
Otherwise, sub-modules will only be recognized when launch_agent.py is moved to and run from the main folder named wireless-suite.
Note: Tested on a Windows 10 machine via Anaconda Prompt!
The text was updated successfully, but these errors were encountered:
As mentioned in #1, updating the name of the module results into a smooth completion of the installation process. However, when running the launch_agent.py from the scripts folder it results into:
ModuleNotFoundError: No module named 'wireless.agents'
Looking again at
wireless-suite/setup.py
Line 10 in 1257d3a
, it can be noticed that the other sub-modules included in the package -such as agents- are not listed.
This can be done manually by replacing the line of code previewed above with:
packages=['wireless', 'wireless.agents', 'wireless.envs', 'wireless.utils'],
for instance.Alternatively, setuptools.find_packages() can be used to fulfill the same task automatically.
Otherwise, sub-modules will only be recognized when launch_agent.py is moved to and run from the main folder named wireless-suite.
Note: Tested on a Windows 10 machine via Anaconda Prompt!
The text was updated successfully, but these errors were encountered: