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
Following the second step of the installation instructions -described in the Getting Started section- results in: ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
The installer can not find a directory that has the name wireless_suite as noticed in: error: package directory 'wireless_suite' does not exist, preventing the completion of the installation process.
, it can be noticed that the module name used in setup.py is inconsistent with the original directory's name. It needs to be changed to wireless instead of wireless_suite in the line of code previewed above.
Note: Tested on a Windows 10 machine via Anaconda Prompt!
The text was updated successfully, but these errors were encountered:
Following the second step of the installation instructions -described in the Getting Started section- results in:
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
The installer can not find a directory that has the name
wireless_suite
as noticed in:error: package directory 'wireless_suite' does not exist
, preventing the completion of the installation process.Taking a look at
wireless-suite/setup.py
Line 10 in 1257d3a
, it can be noticed that the module name used in setup.py is inconsistent with the original directory's name. It needs to be changed to
wireless
instead ofwireless_suite
in the line of code previewed above.Note: Tested on a Windows 10 machine via Anaconda Prompt!
The text was updated successfully, but these errors were encountered: