Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

2.5K
Views
Conda environment not showing up in VS Code

I installed miniconda on Windows 10 and created an environment (I followed this guide: https://www.notion.so/shashankkalanithi/Setting-Up-Conda-Environment-ba83f7f019ea44b9af37588eed419eb9). However when I open the VS Code I don't see that environment python interpeter on kernel list. There is only one interpreter on the list: ~\Miniconda3\python.exe

How can I fix this?

over 4 years ago · Santiago Trujillo
9 answers
Answer question

0

in vscode press ctrl+shift+p and type python:Select Interpreter you should see all the environment there. If it does not appear create a .py file and try again. also you can press the reload icon on the search bar where you typed python:select interpreter.

over 4 years ago · Santiago Trujillo Report

0

The extension automatically looks for interpreters in the following locations:

Conda environments that contain a Python interpreter. VS Code does not show conda environments that don't contain an interpreter.

After you create a conda environment, you need to activate it and install some packages in order to get the python interpreter. And remember to reload the VSCode. If it still does not exist, you can try to choose Enter interpreter path, to point the path manually.

over 4 years ago · Santiago Trujillo Report

0

You can try to follow methods from vscode - Create a conda environment

Additional notes: ...To ensure the environment is set up well from a shell perspective, one option is to use an Anaconda prompt with the activated environment to launch VS Code using the code . command. At that point you just need to select the interpreter using the Command Palette or by clicking on the status bar.

over 4 years ago · Santiago Trujillo Report

0

In your project .vscode/settings.json file, just replace the old python.pythonPath setting with the new one (or add if non-existing) python.defaultInterpreterPath and it will work. The value for the setting is the path to the venv you're using in your project.

Afterward, Ctrl+Shift+P via Python: Select Interpreter will allow you to choose a different interpreter.

over 4 years ago · Santiago Trujillo Report

0

Firstly you need to create an environment with python in it otherwise it won't recognize it. Create an environment like this first

conda create --name tf26 python==3.10

Use your preferred name and python version here thereafter restart VS Code. You will definitely see your env.

Note: You can delete any unused env if want like this

conda env remove --name <env_name>
over 4 years ago · Santiago Trujillo Report

0

I had the same problem. After I opened Anaconda Prompt as Administrator and created the environment, I saw it in VS code

Open “Anaconda Prompt” from the Windows start button as “Administrator.”

over 4 years ago · Santiago Trujillo Report

0

For me installing pip fixes the issue.

conda install pip
over 4 years ago · Santiago Trujillo Report

0

I wanted to use the new environment as a Jupyter kernel and had to install the jupyter package for it to show up in the kernel selection of VSCode. You can install it by running conda install jupyter.

over 4 years ago · Santiago Trujillo Report

0

I finally resolved the problem.
This thread says that you need to create the conda environment passing the python argument:

conda create -n your_env_name python=3.7

Doing this the environment appears in the Select interpreter to start Jupyter server options.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!