Home > Article > Backend Development > Detailed explanation of Sublime Python3 virtual environment configuration
$ ln /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/
Related learning recommendations: Python3 video tutorial
Create the project folder, enter the directory
Create the Test2 project, use Sublime to open
$ python3 -m venv env
Activate virtual python environment
$ source ./env/bin/activate
Exit virtual python environment
$ deactivate
The above is the detailed content of Detailed explanation of Sublime Python3 virtual environment configuration. For more information, please follow other related articles on the PHP Chinese website!