question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

pipenv venv not activated before Code Runner executes Python script file

See original GitHub issue

Windows 10 1803 (17134.407) Python 3.7.1 pipenv 2018.10.13 VSCode 1.29.1 Code Runner 0.9.5

When running a Python script using Code Runner the virtualenv is not activated before the code is run in the terminal for the first time, causing my code fail. The virtualenv is activated after the script fails and I can then run my code successfully until I close the terminal window. A minimal working example is shown below.

code-runner

The venv is activated in VSCode and the correct Python interpreter is configured.

Here is the Pipfile for the project:

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
numpy = "*"

[dev-packages]

[requires]
python_version = "3.7"

And here are all the Code Runner settings from my settings.json file:

{
    "code-runner.fileDirectoryAsCwd": true,
    "code-runner.respectShebang": false,
    "code-runner.ignoreSelection": true,
}

While I can get my code to work this is rather annoying. Does anyone have any ideas what might be causing this?

Issue Analytics

  • State:open
  • Created 5 years ago
  • Reactions:6
  • Comments:32

github_iconTop GitHub Comments

20reactions
dhdavviecommented, Feb 22, 2019

Having the same issue here. I seemed to have fixed it by both making it use the integrated terminal (zsh) and setting the executor map like such:

    "code-runner.executorMap": {
        "python": "$pythonPath $fullFileName",
    },
    "code-runner.runInTerminal": true

Hope this can help someone.

4reactions
pconwellcommented, May 28, 2019

I don’t have anything new to add other than 5 months later I am seeing the same issue. The settings.json file that is autogenerated has content similar to:

{
   "python.pythonPath": "C:\\Users\\pconwell\\.virtualenvs\\ridgeplots-0xoO3BBx\\Scripts\\python.exe"
}

Which will not work at all. VS Code is (presumably) recognizing the virtual environment correctly as the code will run manually from terminal AND the correct virtual environment is showing the lower left corner of VS Code. If I use the above settings, I will get a ‘module not found error’.

If I change the above code to:

{
   "python.venvPath": "C:/Users/pconwell/.virtualenvs",
   "python.pythonPath": "C:/Users/pconwell/.virtualenvs/ridgeplots-0xoO3BBx/Scripts/python.exe"

   "code-runner.executorMap": {
       "python": "$pythonPath $fullFileName",
       }
   "code-runner.runInTerminal": true
}

The Code Runner will work BUT only after I run it the first time. (i.e. the first time I run Code Runner it gives an error, but the second time I run Code Runner it works.) The specific error varies from project to project, but the error will inevitably magically disappear the second time Code Runner is run.

Read more comments on GitHub >

github_iconTop Results From Across the Web

VS Code Code Runner doesn't work with virtualenvs
This now opens a new terminal, where the python environment you have selected using VS Code's Python: Select Interpreter will be activated ......
Read more >
Frequently Encountered Pipenv Problems - Read the Docs
Run the following command: pipenv lock --clear. and try again. If this does not work, try manually deleting the whole cache directory. It...
Read more >
Pipenv & Virtual Environments
Pipenv is a dependency manager for Python projects. If you're familiar with Node.js' npm or Ruby's bundler, it is similar in spirit to...
Read more >
Advanced Visual Studio Code for Python Developers
Debugging Your Python Scripts in Visual Studio Code ... To run the enabled linters whenever a file is saved, add the following setting...
Read more >
pipenv Documentation - Read the Docs
Makefile, direct calls to pip and python -m venv or virtualenv. to create ... Running Pipenv as root or with sudo (or Admin...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found