Python command not found in Windows 10 with the subtyme of linux

1

Well, it turns out that I have installed Python in Windows 10 and recently installed the bash in ubuntu that is now available in these new versions, but when I do the typical python to run it, it gives me the error message when I can not find it.

Should I uninstall the one I already have in Windows 10 (including the environment variable) and reinstall it from the linux subsystem or will it not create any conflict having both installed?

I hope someone can help me with this.

Thanks in advance!.

    
asked by ikenshu 14.06.2017 в 16:59
source

1 answer

1

In theory Python is already installed on the Ubuntu Bash in Windows subsystem , at least this document specifies it, I think it comes with version 2.7x and I did not find documentation to install any other. What you are probably missing is the pip command that you can install with sudo apt-get install python-pip . With respect to the "Windows" version of Python, I commented that they are completely different, isolated and independent environments.

    
answered by 14.06.2017 в 22:54