- Más nuevo
- Más votos
- Más comentarios
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
Contenido relevante
- OFICIAL DE AWSActualizada hace un mes
- OFICIAL DE AWSActualizada hace un mes
- OFICIAL DE AWSActualizada hace un año
- OFICIAL DE AWSActualizada hace 10 meses