Please tell me how to store data of image in local

i face problem in storing data of image in local directory
like i want to store my data in ( desktop -> jupyter-> store_data ) folder

Hey @pankajrajput020010 ,
After you have created your .npy file,
Just use

np.save(path, your numpy variable)

It will save your .npy file on the respective path.