Skip to content

Instantly share code, notes, and snippets.

@srang992
Created September 1, 2023 18:13
Show Gist options
  • Save srang992/59f8f2595847a4be033fcc47ec033862 to your computer and use it in GitHub Desktop.
Save srang992/59f8f2595847a4be033fcc47ec033862 to your computer and use it in GitHub Desktop.
# Navigate to your desired directory. Here I am using D
$ d:
# make the directory named 'ChromeCustomHomepage'
$ mkdir ChromeCustomHomepage
# Navigate to the newly created Directory
$ cd ChromeCustomHomepage
# install 'virtualenv' if you don't have it installed
$ pip install virtualenv
# Now create the virtual environment using the below command
$ virtualenv venv
# or if you want to specify the Python version
$ virtualenv --python=/path/to/python3.x venv
# Now opening the directory in VS Code
$ code .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment