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
After installing the wheel and trying to run cohydra with the dependencies from the wheel, it can happen that `nacl` does not work anymore.
18
+
During the execution of cohydra it tried to use `nacl._sodium` as part of the dependency `paramiko`, but didn't found it anymore.
19
+
20
+
To solve this problem, reinstall `nacl`:
21
+
22
+
```
23
+
sudo pip3 uninstall pynacl
24
+
sudo pip3 install pynacl
25
+
```
26
+
27
+
If you are facing issues during the uninstall of `pynacl` (pip does not want to uninstall the package), run:
28
+
29
+
```
30
+
sudo apt remove python3-pip
31
+
```
32
+
33
+
and reinstall it like it is described here: [https://pip.pypa.io/en/stable/installing/](https://pip.pypa.io/en/stable/installing/)
34
+
35
+
### I have python 3.6.x or older
36
+
37
+
Run:
38
+
39
+
```
40
+
sudo apt install python3.7
41
+
```
42
+
43
+
to install python 3.7.
44
+
And follow these instructions afterwards: [https://jcutrer.com/linux/upgrade-python37-ubuntu1810](https://jcutrer.com/linux/upgrade-python37-ubuntu1810)
0 commit comments