Windows 10 and Napalm Issue

While installing and trying a script with napalm I was receiving the error ModuleNotFoundError: No module named ‘fcntl’ . The following is a solution to this issue.
- This error is due to an import error with the standard Google version of TextFSM when using Windows. I fixed it by removing my current version of textfsm and installing Kirk Byers version of textfsm that includes the necessary fixes.
pip uninstall text fsm
pip install -U git+https://github.com/ktbyers/textfsm.git@30b55e037437e513e48f127cbeb56f83787aaeb5
Leave a Reply