LiuLei
Results
2
comments of
LiuLei
I have the same problem on windows. Finally I figured it out that it's not a docker problem. In my case, it's a windows permission problem. When install samcli(I use...
关于 ModuleNotFoundError: No module named 'pwd' ,可如下解决(我刚刚用这个方法解决了) 首先,创建 pwd.py 文件,内容如下 ```python from os import * from pwd import * def get_username(): return getpwuid(getuid())[0] ``` 然后,将 pwd.py 文件拷贝到 Python安装路径/Lib/ 下 最后,重新运行...