Instead of creating a new table, re-insert the unique rows into the same table after truncating it. Do it all in one transaction. My example code drops the temporary table at the end of the transaction.
You mentioned millions of rows. To make the operation fast you want to allocate enough temporary buffers for the session. Find out the size of your table:
SELECT pg_size_pretty(pg_relation_size('tbl'));
Set temp_buffers accordingly. Round up because in-memory representation needs a bit more RAM.
SET temp_buffers = 200MB; -- example value
CREATE TEMPORARY TABLE t_tmp ON COMMIT DROP AS
SELECT DISTINCT * FROM tbl; -- DISTINCT folds duplicates
TRUNCATE tbl;
INSERT INTO tbl
SELECT * FROM t_tmp;
-- ORDER BY id; -- optionally "cluster" your data while being at it.
This method is superior to creating a new table if depending objects exist. Views, indexes, foreign keys or other objects referencing the table. TRUNCATE makes you begin with a clean slate anyway (new file in the background) and is much faster than DELETE FROM tbl with big tables (DELETE can actually be faster with small tables).
For big tables, it is regularly faster to drop indexes and foreign keys, refill the table and recreate these objects. As far as fk constraints are concerned you have to be certain the new data is valid of course or you'll run into an exception on trying to create the fk.
Note that TRUNCATE requires more aggressive locking than DELETE. This may be an issue for tables with heavy, concurrent load.
If you have no depending objects at all, you might create a new table and delete the old one, but you hardly gain anything over this universal approach.
For very big tables that would nuke your available RAM, creating a new table will be considerably faster. You'll have to weigh this against possible troubles / overhead with depending objects.