我知道,這個問題已被問及許多次。但是,我仍然無法擺脫這一點。我在我的Mac上發現了以下信息。 cd /Library/Frameworks/Python.framework/Versions/
Current -> 2.7
3.6
whereispython
/usr/bin/python
which python
/usr/bin/python
which -a python
我已經安裝了Anaconda並使用了Spyder Python。 我已經安裝了最新的Python,出於某種原因我無法使用pip。 搜索網絡和SoF,並理解這是連接到系統路徑和env屬性的東西。 這裏是我的發現迄今: for p in sys.path: print(p)
C:\Users\user\Anaconda3\lib\site-packages\spyder\utils\site
C
我有這樣的代碼 mainModule from src.comp.mypackage.wait import Wait
from src.comp.mypackage.men import Men, MenItem
""" Code and stuff using Men and MenItem """
if __name__ == '__main__':
MenuTestDr