PyCharm에서 PYTHONPATH 설정하기



bashrc 또는 zshrc에 설정한 환경변수 PYTHONPATH의 설정을 pycharm에서 하는 방법이다.



You need to go to the Main PyCharm Preferences, which will open up a separate window. In the left pane, choose Project:... > Project Interpreter. Now, in the main pane on the right, click the settings symbol (gear symbol) next to the field for "Project Interpreter". Choose More in the menu that pops up. Now in the final step, pick the interpreter you are using for this project and click on the tree symbol at the bottom of the window (hovering over the symbol reveals it as "Show paths for the selected interpreter"). Add your path by click in the "plus" symbol.

It took me ages to find, so I hope the detailed instructions will help. Further details are available in the PyCharm docs.

https://www.jetbrains.com/help/pycharm/2016.1/installing-uninstalling-and-reloading-interpreter-paths.html?search=add%20folder%20to%20path

It is good practice to have __init__.py in each subfolder of the module you are looking to add, as well as making your project folder a 'Source Root'. Simply right-click on the folder in the path bar and choose 'Mark Directory as ...'


https://stackoverflow.com/questions/28326362/pycharm-and-pythonpath?rq=1



Configure a Python interpreter

https://www.jetbrains.com/help/pycharm/configuring-python-interpreter.html


PYTHONPATH는 아래와 같이 커스텀 라이브러리들을 추가 할 수 있다.




Python Console에도 추가 할 수 있다.



참고 미디엄 포스팅: https://medium.com/@erikhallstrm/work-remotely-with-pycharm-tensorflow-and-ssh-c60564be862d

+ Recent posts