I am trying to solve problem described in the title.
What I've tried
I tried to consider simple examples of graph with 0, 1 and 2 vertices and figured out that every edge has start node and end node, so number of edges can be calculated as follows:
E - number of edges in graph
Nd - degree of node
$$E=\frac{\sum Nd}{2}$$
Since number of edges must be integer, $\sum Nd$ must be even. It is only even if there is even number of odd sum components.
Questions
Is this enough to prove the conjecture?
Is there other way to prove that?