Вие сте тук, защото използвате:
- Windows OS версия 10+
- Python версия 3.3+
- Анаконда3
И бихте искали да редактирате PYTHONPATH
постоянно.
TL; DR
- Отидете на
C:\Users\\Anaconda3\Lib\site-pa
ckages - Създайте файл
python37.pth
- Редактирайте файла, за да включите този ред
C:\\Users\\\\my_
модул
Дългата версия; Правете четене
Пролог
В повечето случаи редактирането на PYTHONPATH
от GUI за настройки ще свърши работа. Трикът е добре обяснен в този отговор на Stack Overflow.
Ако на първо място търсите само да редактирате пътя си локално , този полезен отговор ще свърши работа.
Леко удължен артикул №. 1
Ако нямате C:\Users\\Anaconda3\Lib\site-pa
каки, повторетеplace C:\Users\
Slightly Extended Item no. 2
If you are using Python3.7, create a file called
python37.pth
. Else create a file called python
Not sure which version?
Under
C:\Users\\Anac
onda3\ search for a file of theform python&l
t;XX>.d
ll. The indicates the version number you need fo
r naming your .pth file.Windows is super annoying and won’t let you create a file with a
.pth
suffix?There are such files in the
C:\Users\\Anaconda3\Lib\site-pa
ckages folder. Copy one of them and edit the prefix.Some places say you need to create a
._pth
file instead of.pth
?A
._pth
file will completely replace your existing path. While a.pth
file will append its content to the path you already have. You can find more information here.
Slightly Extended Item no. 3
Slightly Extended Item no. 3
Assuming the
SuperCoolClass
you wish to import is located at
C:\Users\\my_project_folder\my_awesome_f
ile.py .
Then open your newly created
python
line:
C:\\Users\\\\my_pr
oject_folder.
Yes, with those annoying dou
bl
e slashes \\ .
No, wit
ho
ut quotes "" .
And that’s it.
Now you can import from anywhere, like a normal person:
from my_awesome_file import SuperCoolClass
.
Epilogue
Epilogue
Nothing important to add here really.
I just hope my 2 hours of frustration + 1 hour of writing this post saved you some time.
Peace out.

Original text