You can add a nofollow meta tag to a page to instruct search engines not to index any of the links on that page, or you can add the rel="nofollow" attribute to an individual link to instruct search engines to not index the linked page.
If you want to add the rel="nofollow" attribute to the pagination link, so that Google doesn't index subsequent pages of results, well... there is now way to customise the output of the wpv-pager-next-page shortcode to be able to add it.
You could use JS to add the attribute after the page loads, but I don't see how that would help, because Google will first index the page with JS disabled.
So it seems the only option would be to add the nofollow meta tag to the page itself, so that Google doesn't index any of the links on the page, including the pagination link. Would that be an option?
Our pagination structure is with ?pg=3 and not with ?wpv_view_count=62151&wpv_paged=2
If Google find the url ?wpv_view_count=62151&wpv_paged=2 we will have lots of not existing urls. We can't add nofollow meta tags in all pages. We just want to ignore ?wpv_view_count=62151&wpv_paged=2 url and let the normal pagination for index pages.
Paginating a View works via those URL parameters, there isn't an option to modify the format, the choice is to either use Views pagination or not.
On archive pages you can use the pagination links generated by your theme instead of pagination links created with Views, but there is no such option when you add a View to a page which needs paginating.
It sounds like you need to add a NOINDEX meta tag to this particular page, so that Google doesn't index it (or any of the pages of results generated with the Views parameters).
See hidden link
If you are using an SEO plugin you should have such an option available, otherwise you could do it yourself with a little custom code that uses the wp_head action to insert such a meta tag. There's an example of how to do that here: hidden link