课程: Google Cloud Professional Machine Learning Engineer Cert Prep
免费学习该课程!
今天就开通帐号,24,700 门业界名师课程任您挑!
Data science setup with virtualenv and pip on Windows - Google Cloud Platform教程
课程: Google Cloud Professional Machine Learning Engineer Cert Prep
Data science setup with virtualenv and pip on Windows
Here, I'm on a Windows 11 machine, and one of the things I wanted to prove is that the Python language has all of the built in tools for you to do installations. Now, if we go through and we go to the python.org website and we go to Downloads. This is the official location to download Python, and you can get it for here for free. And this one is 3.11 if I wanted to use that one. An alternate way is if you go to the command prompt and you type in the cmd command to get it started and then type in Python, what you'll notice is that it will automatically install Python from the Microsoft Store for you. And notice again, the Python Software Foundation is the official distributor of Python, not a third party company. Now, if I go through here and I type in python -m venv, it includes a virtual environment manager right inside of the Python library. And if I type in venv, it'll create one inside of this directory. Now, let's say you…