Likely, that means Mathematica doesn't know a closed-form solution, if it exists.
DSolve[{f'''[x] == 1/3*f'[x]^2 - 2/3*f[x]*f''[x], f[0] == 0, f'[0] == 1, f'[Infinity] == 0}, f[x], x]
(* Returns unevaluated *)
Numeric method:
sol = NDSolve[{f'''[x] == 1/3*f'[x]^2 - 2/3*f[x]*f''[x], f[0] == 0, f'[0] == 1, f'[20] == 0}, f, {x, 0, 20}]
Plot[{f[x] /. sol, Evaluate@D[f[x] /. sol, x]}, {x, 0, 20}, PlotLegends -> {"f[x]", "f'[x]"}]
