[Cryptography-dev] ModuleNotFoundError: No module named 'nacl._sodium'

2020-05-15 Thread Matt Tompkin
Hi guys I'm using windows / python 3.8 / netmiko to automate some network tests. On implementation, I'm seeing the error: ModuleNotFoundError: No module named 'nacl._sodium' When viewing the error, it leads to crypto_aead.py which is calling : from nacl._sodium import ffi, lib Is there another

Re: [Cryptography-dev] ModuleNotFoundError: No module named 'nacl._sodium'

2020-05-15 Thread legorooj via Cryptography-dev
Matt Go into PyCharm Settings > project interpreter > . You should see a list of packages installed in the environment for that project. If pynacl isn't installed, click the plus button in the top right corner and install it. You could also do this from the command line, like I do, but this is