The invention relates to a path planning method based on concentric circle sampling to guide the RRT algorithm, comprising the following steps: 1. Taking the starting point of path planning as the root node of a random tree; 2. Generating random points by concentric circle sampling; 3. Judging random Whether the point is within the range of the map, if so, go to step 4, otherwise return to step 2 to regenerate a random point; 4. Find the node closest to the random point as a neighboring point; 5. Extend the generation from the neighboring point to the random point with a step size New node; 6. Judging whether there is an obstacle between the new node and the adjacent point, if yes, return to step 2 for resampling, otherwise add the new node to the random tree; 7. Determine whether the new node is within the target point area, if yes, add The target point is added to the random tree, and the path point of the planned path is obtained by backtracking from the target point to the root node, otherwise, return to step 2; 8. Fit the path points to obtain the final path. This method is beneficial to improve the pathfinding efficiency and quickly find the planned path.