I'm trying to use shadowsocksR in my ubuntu 16 .
- sudo apt-get install git
- git clone -b manyuser https://github.com/shadowsocksr-backup/shadowsocksr.git
- cd shadowsocksr/shadowsocks
- python local.py -s server_ip -p server_port -k password -m chacha20-ietf -o tls1.2_ticket_auth
then he said " libsodium not found" so I install libsodium
- download the LATEST.tar.gz from https://download.libsodium.org/libsodium/releases/
- tar -zxf LATEST.tar.gz
- cd libsodium-stable
- ./configure
- make && make check
- sudo make install ```
but this time
python local.py -s server_ip -p server_port -k password -m chacha20-ietf -o tls1.2_ticket_auth
He said OSError: libsodium.so.23: cannot open shared object file: No such file or directory
thankyou for your help