NotImplementedError in MacOSX10.15
See original GitHub issue➜ ~ $ pip3 install pywifi
Collecting pywifi
Downloading https://files.pythonhosted.org/packages/89/55/170a52685eeefeab36bfaf26bdca629263a0a28efffc3b556b2cc86ab966/pywifi-1.1.12-py3-none-any.whl
Installing collected packages: pywifi
Successfully installed pywifi-1.1.12
You are using pip version 19.0.3, however version 19.3 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
➜ ~ $ python3
Python 3.7.4 (v3.7.4:e09359112e, Jul 8 2019, 14:54:52)
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pywifi
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pywifi/__init__.py", line 15, in <module>
from .wifi import PyWiFi
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pywifi/wifi.py", line 15, in <module>
from .iface import Interface
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pywifi/iface.py", line 15, in <module>
raise NotImplementedError
NotImplementedError
>>> exit()
Issue Analytics
- State:
- Created 4 years ago
- Comments:8
Top Results From Across the Web
Python multiprocessing Queue NotImplementedError macOS
According to the doc: A portable implementation of multiprocessing.Queue. Because of multithreading / multiprocessing semantics, Queue.qsize() ...
Read more >Unable to find the Python PIL library. - Google Groups
"NotImplementedError: Unable to find the Python PIL library. Please view the SDK documentation for details about installing PIL on your system."
Read more >Pymc3 linker error - v3 - PyMC Discourse
Hi all, I have been using pymc3 for about a year. A few months ago I changed from an intel mac to an...
Read more >aparo/pyes - Gitter
there is NotImplementedError in aggs.py ... when i call TermsAgg.serialize, it will go to the default Agg._serialize. it throws NotImplementedError. thanks.
Read more >plyer - PyPI
bluetooth for Android #571; raise NotImplementedError() NotImplementedError when I use tts #567; Filter variable may be uninitialized in MacOSX filechooser #566 ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
it seems like pywifi only support win or linux, and pywifi also can not run in my macbook
直接
pip install pywifi
中的iface.py文件在导包的时候判断系统是没有Mac OS X在进行
import pywifi
就不会报NotImplementedError
了