I was trying to copy and paste the file named libstdc++.so.6.0.2
from
/home/a11111/anaconda3/lib/libstdc++.so.6.0.21 on linux
using the command
cp ~/anaconda3/lib/libstdc++.so.6.0.21 /lib64/
However, the terminal keep returning me the error message
'cp: cannot stat '/home/a11111/anaconda3/lib/libstdc++.so.6.0.21': No such file or directory'
I thought the terminal might not able to find the file because the file name has special characters, therefore I tried
cp ~/anaconda3/lib/libstdc\+\+\.so\.6\.0\.21 /lib64/
But I got the same error message. How do I copy the file from the terminal?
Thank you.