I think that might've worked. Now I am getting this error:
```
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/joe/researh_projects/ns3/ns-allinone-3.38/ns-3.38/build/bindings/python/visualizer/__init__.py", line 1, in <module>
from ns import *
File "/home/joe/researh_projects/ns3/ns-allinone-3.38/ns-3.38/build/bindings/python/ns/__init__.py", line 596, in <module>
ns = load_modules() # can be imported via 'from ns import ns'
File "/home/joe/researh_projects/ns3/ns-allinone-3.38/ns-3.38/build/bindings/python/ns/__init__.py", line 424, in load_modules
libraries_to_load = sort_to_dependencies(libraries, prefix)
File "/home/joe/researh_projects/ns3/ns-allinone-3.38/ns-3.38/build/bindings/python/ns/__init__.py", line 390, in sort_to_dependencies
_, _, linked_libraries = extract_linked_libraries(ns3_library, prefix)
File "/home/joe/researh_projects/ns3/ns-allinone-3.38/ns-3.38/build/bindings/python/ns/__init__.py", line 165, in extract_linked_libraries
return library_path, lib, list(map(lambda x: x.decode("utf-8"), linked_libs))
File "/home/joe/researh_projects/ns3/ns-allinone-3.38/ns-3.38/build/bindings/python/ns/__init__.py", line 165, in <lambda>
return library_path, lib, list(map(lambda x: x.decode("utf-8"), linked_libs))
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb0 in position 334: invalid start byte
```
I've tried fixing this before by just changing the encoding from utf-8 to utf-16, but then if you rebuild, then it just overwrites this change.
Would you recommend fixing it in a different way?