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
When I install ftw_80211_ofdm_tx files, the modules are always installed in pythonX*Y/site-packages. To avoid adding new PYTHONPATH, I want to install them into dist-packages. The reason why I want to do that is because when I write from gnuradio import ftw. The program is not so smart to recogize it should use dist-packages/ or site-packages. In other words, the system only recognize one folder.
To tackle this problem, I change site-packages to dist-packages in ftw_80211_ofdm_tx installation files, e.g., configure. I can use find . | xargs grep "site-packages" to find all files. However, it does not work. After configuration, site-packages appear again. It is weired.
Any hints?
The text was updated successfully, but these errors were encountered:
When I install ftw_80211_ofdm_tx files, the modules are always installed in pythonX*Y/site-packages. To avoid adding new PYTHONPATH, I want to install them into dist-packages. The reason why I want to do that is because when I write from gnuradio import ftw. The program is not so smart to recogize it should use dist-packages/ or site-packages. In other words, the system only recognize one folder.
To tackle this problem, I change site-packages to dist-packages in ftw_80211_ofdm_tx installation files, e.g., configure. I can use find . | xargs grep "site-packages" to find all files. However, it does not work. After configuration, site-packages appear again. It is weired.
Any hints?
The text was updated successfully, but these errors were encountered: