Hello there when i try to install Popcorn Time 3.10 with this command:

./Popcorn-Time 

i get this error:

./Popcorn-Time: error while loading shared libraries: libnw.so: cannot open shared object file: No such file or directory 

ps: those are my files when i extract the Popcorn-Time-0.3.10-Linux-64.tar.xz file:

/locales /node_modules /src /minidump_stackwalk /nacl_helper /natives_blob.bin /payload /Popcorn-Time 
5

3 Answers

sudo chmod -R o+rX "/popcorn_dir" 

worked for me.
Thanks.

Try this. Fix permissions on files:

cd /opt/Popcorn (or wherever it is) chmod -R 555 * (755 if not ok) chown -R root:root * 

“sudo su” to get permissions on your filesystem.

I also had the same error message.

I had the lib/ directory in the parent directory of the popcorn executable.

Indeed I had messed up the files during the installation.

After moving the lib/ directory to be in the same directory containing the executable, the error message was gone and the application could run just fine.

So make sure the lib/ directory is in your Popcorn directory.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy