Skip to content
Advertisement

How do I run a py file inside a virtual environment on Windows 7?

I need help understanding venv and project management on a Windows 7 system.

I have installed Python 3.7.4. Running the command ‘pip list’ results in the following:

JavaScript

Under the path C:ProjectsNeuralNetworks I have the following files/folders:

JavaScript

When activating my virtual environment ‘project_envScriptsactivate.bat’ the command ‘pip list’ results in:

JavaScript

When I go to run main.py I get the error “NameError: name ‘numpy’ is not defined”.

JavaScript

I expect to see the version of numpy but instead I get the error that numpy is not found which tells me I don’t really understand how these directories work.

Solution: I added runserver.bat to my project directory with following.

JavaScript

I run the runserver.bat and everything works perfectly.

Advertisement

Answer

You need to create a .bat file where you added some code inside to activate the environment first and then run your python file.

something like :

JavaScript

Reference : A Python script that activates the virtualenv and then runs another Python script?

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement