search
HomeDevelopment ToolsVSCodeHow to set up a remote Python environment in VScode? (step sharing)

How to set up a remote Python environment in

VScode? The following article will share with you step by step how to build a remote Python environment in VScode. I hope it will be helpful to you!

How to set up a remote Python environment in VScode? (step sharing)

I have been using jupyter lab to write code on the server before. Today I tried using VScode to write remote code, which is hereby recorded.

Installation

First install the Remote-ssh plug-in.

How to set up a remote Python environment in VScode? (step sharing)

Then, use Ctrl Shift P to open the command panel, enter connect to host, and select the first command:

How to set up a remote Python environment in VScode? (step sharing)

Select Add New SSH Host

How to set up a remote Python environment in VScode? (step sharing)

and then enter the remote address and login account as prompted. [Recommended learning: "vscode introductory tutorial"]

How to set up a remote Python environment in VScode? (step sharing)
Here select the ssh configuration file in the username directory of our computer. If not, you need to first change the computer's ssh configuration file. The ssh function is turned on. Win10 already supports ssh and can be turned on easily. Reference: Install OpenSSH, link

How to set up a remote Python environment in VScode? (step sharing)

and then right-click and select Connect.

How to set up a remote Python environment in VScode? (step sharing)

Solve the problem that VScode's Remote SSH uses Windows username instead of the username in the ssh_config file

After completing the above configuration, The first time I connected to the remote host everything was fine. But when I added other remote nodes later, I found that VScode automatically used the Windows computer's own host name instead of the login account name I configured in the file when connecting. After searching for some information, I found a solution, which is recorded as follows:

First, we open the file C:/Users/your_username/.ssh/config, and then add all the names after Host in it. Our login account name. An example is as follows:

Host 10.10.10.1
  User usename
  HostName 10.10.10.1

is changed to

Host usename@10.10.10.1
  User usename
  HostName 10.10.10.1

. After this modification, you can ensure that you use the configured account name to log in every time.

Password-free login method

After the above configuration, you need to enter a password every time you connect to the remote host, which is very troublesome. We can configure password-free login to facilitate connection.

First, you need to use ssh-keygen -t rsa to generate a pair of keys, id_rsa and id_rsa.pub, in the local user directory (i.e. C:/Users/your_username/.ssh/). If the file already exists in the local directory, there is no need to regenerate it. You can refer to vscode to avoid entering the password every time ssh

Then, we append the contents of the generated id_rsa.pub file to authorized_keys in the /home/username/.ssh/ directory of the remote server (if not You need to create it yourself) file. After that, you can log in without a password.

'Bad owner or permissions' and vscode "The pipe that the remote host remote ssh process is trying to write does not exist" problem solution

After the above configuration, a few days My VScode is normal, but because the computer user name is set to Chinese, some errors occur. So after I changed my Windows user name back to English, VScode couldn't connect. And the error message in the terminal is always: 'Bad owner or permissions' and vscode "The pipe that the remote host's remote ssh process is trying to write does not exist."

After searching for information, I found that there is a problem with OpenSSH in WIn10. The solution is to change the

%SystemRoot%/openssh

in the system environment variable to the ssh path in the git installed on the computer. Mine is:

D:\Program Files\Git\usr\bin

For more knowledge about VSCode, please visit: vscode tutorial! !

The above is the detailed content of How to set up a remote Python environment in VScode? (step sharing). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
Visual Studio Professional and Enterprise: Paid Versions and FeaturesVisual Studio Professional and Enterprise: Paid Versions and FeaturesMay 10, 2025 am 12:20 AM

The difference between VisualStudioProfessional and Enterprise is in the functionality and target user groups. The Professional version is suitable for professional developers and provides functions such as code analysis; the Enterprise version is for large teams and has added advanced tools such as test management.

Choosing Between Visual Studio and VS Code: The Right Tool for YouChoosing Between Visual Studio and VS Code: The Right Tool for YouMay 09, 2025 am 12:21 AM

VisualStudio is suitable for large projects, VSCode is suitable for projects of all sizes. 1. VisualStudio provides comprehensive IDE functions, supports multiple languages, integrated debugging and testing tools. 2.VSCode is a lightweight editor that supports multiple languages ​​through extension, has a simple interface and fast startup.

Visual Studio: A Powerful Tool for DevelopersVisual Studio: A Powerful Tool for DevelopersMay 08, 2025 am 12:19 AM

VisualStudio is a powerful IDE developed by Microsoft, supporting multiple programming languages ​​and platforms. Its core advantages include: 1. Intelligent code prompts and debugging functions, 2. Integrated development, debugging, testing and version control, 3. Extended functions through plug-ins, 4. Provide performance optimization and best practice tools to help developers improve efficiency and code quality.

Visual Studio vs. VS Code: Pricing, Licensing, and AvailabilityVisual Studio vs. VS Code: Pricing, Licensing, and AvailabilityMay 07, 2025 am 12:11 AM

The differences in pricing, licensing and availability of VisualStudio and VSCode are as follows: 1. Pricing: VSCode is completely free, while VisualStudio offers free community and paid enterprise versions. 2. License: VSCode uses a flexible MIT license, and the license of VisualStudio varies according to the version. 3. Usability: VSCode is supported across platforms, while VisualStudio performs best on Windows.

Visual Studio: From Code to ProductionVisual Studio: From Code to ProductionMay 06, 2025 am 12:10 AM

VisualStudio supports the entire process from code writing to production deployment. 1) Code writing: Provides intelligent code completion and reconstruction functions. 2) Debugging and testing: Integrate powerful debugging tools and unit testing framework. 3) Version control: seamlessly integrate with Git to simplify code management. 4) Deployment and Release: Supports multiple deployment options to simplify the application release process.

Visual Studio: A Look at the Licensing LandscapeVisual Studio: A Look at the Licensing LandscapeMay 05, 2025 am 12:17 AM

VisualStudio offers three license types: Community, Professional and Enterprise. The Community Edition is free, suitable for individual developers and small teams; the Professional Edition is annually subscribed, suitable for professional developers who need more functions; the Enterprise Edition is the highest price, suitable for large teams and enterprises. When selecting a license, project size, budget and teamwork needs should be considered.

The Ultimate Showdown: Visual Studio vs. VS CodeThe Ultimate Showdown: Visual Studio vs. VS CodeMay 04, 2025 am 12:01 AM

VisualStudio is suitable for large-scale project development, while VSCode is suitable for projects of all sizes. 1. VisualStudio provides comprehensive development tools, such as integrated debugger, version control and testing tools. 2.VSCode is known for its scalability, cross-platform and fast launch, and is suitable for fast editing and small project development.

Visual Studio vs. VS Code: Comparing the Two IDEsVisual Studio vs. VS Code: Comparing the Two IDEsMay 03, 2025 am 12:04 AM

VisualStudio is suitable for large projects and Windows development, while VSCode is suitable for cross-platform and small projects. 1. VisualStudio provides a full-featured IDE, supports .NET framework and powerful debugging tools. 2.VSCode is a lightweight editor that emphasizes flexibility and extensibility, and is suitable for various development scenarios.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool