简体   繁体   中英

Problems setting up a python 3.7 virtual environment

I am trying to create a new python 3.7 virtual environment on my local computer running Windows 8. I have python versions 3.6, 3.7, and 3.8 installed. Their exe's are named python36, python37, and python, respectively. All three are correctly added to PATH because I can enter each interpreter.

Within my new project's directory I tried to create a virtual environment with python37 -m venv env . It produced an error: Error: [WinError 2] The system cannot find the file specified , but it still created the directory. However the Scripts subfolder is empty except for pythonw.exe .

In this question someone suggests doing python37 -m venv env --without-pip . When I tried this, the activation/deactivation scripts were created, but the virtual environment is using python 3.8.

It is my understanding that venv will create the virtual environment with what ever python exe you use to call it, so I don't understand how this can happen. I've verified that python37 points to the correct place with where python37 , and can even enter the 3.7 interactive interpreter.

The problem was that I renamed the python exe's. I don't know exactly what goes wrong, but presumably at some point venv tries to find python.exe and is thrown off by the name.

Changing them back to python.exe and differentiating between the versions with their location fixed the problem.

Edit: Check out Eryk's comments for more details.

First create folder at any drive then go to that folder and install virtualenv package using pip.

pip install virtualenv

Then create your virtual environment.

mkvirtualenv myvirtualenv

Then use below command to activate virtualenv in windows.

myvirtualenv\Scripts\activate

After this you can install related package in current virtual environment.

The Python Standard Library for Creating Virtual Environment

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM