所以,这是我在做什么 从以下链接: https://django-microsoft-auth.readthedocs.io/en/latest/installation.html#from-sources
我正在尝试遵循博客中提到的安装django_microsoft_auth
的所有步骤。
Step-1 i.e. "pip install django_microsoft_auth" # is working
Step-2 i.e. "git clone git://github.com/AngellusMortis/django_microsoft_auth" # is also working
Step-3 i.e. "python setup.py install" # is giving me the below error.
C:\ Users \ vtinkhed \ AppData \ Local \ Programs \ Python \ Python37 \ python.exe: 无法打开文件“ setup.py”:[Errno 2]没有这样的文件或目录
我不知道如何提供帮助。有人可以帮我吗? 预先感谢
答案 0 :(得分:1)
您需要从setup.py所在的文件夹中启动它。
使用cd
进入该文件夹,然后运行python setup.py install
答案 1 :(得分:0)
我有同样的问题。我的问题是我的脚本在“hello.py”而不是“hello.py”中有一个空格。重命名后效果很好。