- 最新
- 投票最多
- 评论最多
Hi Kent
In the C:\WINDOWS\system32>python aws configure python
its looks for the aws command within the system32 folder and since its not present in the system32 folder it gives you the file not found error.
Other than trying to install packages at a global level I would recommend that you create Python virtual environment, activate it, then install the required packages there and try out your commands. With the virtual environment activated python will look for any installed packages within the environment.
This will allow you to have an encapsulated environment with all your required packages without having to deal with Windows PATHs or anything.
Python Documentation -> https://docs.python.org/3/library/venv.html Guide to creating virtual environments -> https://www.askpython.com/python/activating-virtual-environment-in-windows-10
Hope this helps
相关内容
- AWS 官方已更新 10 个月前
- AWS 官方已更新 2 年前
- AWS 官方已更新 2 年前
- AWS 官方已更新 1 个月前