How to change sidebar per page?

… on my homepage and one other page
i dont want to have the sidebar.

You can tell WordPress to do not generate sidebar on specific page(s) with simple condition in your page.php file (or other relevant template file).

For example the following piece of code will disable sidebar on ‘About Me’ page.

<?php if (!is_page('about-me')) get_sidebar(); ?>

*Note: you can use numeric ID or slug of your page inside the is_page() function.*