PyCharm doesn't recognize new sys path

I added new sys path 

Y:\WORK\code\auto_seg

but PyCharm doesn't recognize this new path after I restarted console and PyCharm.

0

Hello, 

the ``sys.path.extend`` command adds the opened projects to sys path, it does not cover the added by user path You can try running in the opened console: 

>import sys

>sys.path

 

The added path should present in the output. PyCharm does it automatically. 

 

1

请先登录再写评论。