diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-05-04 12:31:07 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-05-12 12:04:11 -0500 |
commit | 87f56f775c994e96ccd64281ef5106349dd28afc (patch) | |
tree | 18f77f4e31c50859a6c139e38af54a0de55814c2 /host/docs | |
parent | 5edb92536fbccdbdd399a068c0f57cfd14218d8c (diff) | |
download | uhd-87f56f775c994e96ccd64281ef5106349dd28afc.tar.gz uhd-87f56f775c994e96ccd64281ef5106349dd28afc.tar.bz2 uhd-87f56f775c994e96ccd64281ef5106349dd28afc.zip |
docs: Remove six from Windows build instructions
Recent commits have removed all usage of the 'six' Python module from
UHD, thus removing the necessity to install it.
Diffstat (limited to 'host/docs')
-rw-r--r-- | host/docs/build.dox.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/host/docs/build.dox.in b/host/docs/build.dox.in index a06b857e4..380891bc0 100644 --- a/host/docs/build.dox.in +++ b/host/docs/build.dox.in @@ -70,11 +70,10 @@ The directory to which you extract libusb must not contain spaces. This is to sa - **Comments for Windows Users:** - The Python binary installer must be selected to match the system processor. Although, the 32-bit Python version can be used with 32-bit or 64-bit Windows system, it is recommended to match between Python and Windows installers. If the system is occupied with 64-bit Windows and x64-based processor, the `Windows x86-64 MSI Installer -> python-version.amd64.msi` needs to be used. - The Python path needs to be added to the environment variables. - - Install fundamental packages for Python: On Windows Terminal, navigate to Python scripts folder, e.g. `C:\local\Python37\Scripts`, and execute the following commands to install requests, numpy and six packages, respectively: + - Install fundamental packages for Python: On Windows Terminal, navigate to Python scripts folder, e.g. `C:\local\Python37\Scripts`, and execute the following commands to install requests and numpy packages, respectively: pip install requests pip install numpy - pip install six - For curses package installation: - Download URL: https://www.lfd.uci.edu/~gohlke/pythonlibs/ |