I'm trying to copy the python package from the source directory in .local/lib/python3.8/site-packages
to another folder. Following is the command that I'm using
cp -R home/my_name/.local/lib/python3.8/site-packages/pdfminer/ home/my_name
This gives me following error
cp: cannot stat 'home/my_name/.local/lib/python3.8/site-packages/pdfminer/': No such file or directory
The directory and its content exist, as I have checked it.
How should I carry out the copying task?
cp -R /home/my_name/...
? – Ray May 17 '21 at 09:38